From e2f911073fbf4ca14a2cd9e1c04592888ad9de1a Mon Sep 17 00:00:00 2001 From: Roy Ben-Shabat Date: Tue, 27 Nov 2018 12:43:31 +0200 Subject: Added PPC Events Module. Added generic RunPPC permission to db. --- .../Tango.PPC.Events/ViewModels/MainViewVM.cs | 24 ++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 Software/Visual_Studio/PPC/Modules/Tango.PPC.Events/ViewModels/MainViewVM.cs (limited to 'Software/Visual_Studio/PPC/Modules/Tango.PPC.Events/ViewModels') diff --git a/Software/Visual_Studio/PPC/Modules/Tango.PPC.Events/ViewModels/MainViewVM.cs b/Software/Visual_Studio/PPC/Modules/Tango.PPC.Events/ViewModels/MainViewVM.cs new file mode 100644 index 000000000..38784b790 --- /dev/null +++ b/Software/Visual_Studio/PPC/Modules/Tango.PPC.Events/ViewModels/MainViewVM.cs @@ -0,0 +1,24 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using Tango.PPC.Common; + +namespace Tango.PPC.Events.ViewModels +{ + /// + /// Represents the main view VM and entry point for . + /// + /// + public class MainViewVM : PPCViewModel + { + /// + /// Called when the application has been started + /// + public override void OnApplicationStarted() + { + //Start initializing here rather then in the constructor. + } + } +} -- cgit v1.3.1