Пример #1
0
 public SystemProcessThread UpdateSystemProcessThread(SystemProcessThread processThread)
 {
     // ISystemProcessThreadService systemProcessThreadService = IoC.Resolve<ISystemProcessThreadService>("SystemProcessThreadService");
     SystemProcessThreadService systemProcessThreadService = new SystemProcessThreadService();
     return systemProcessThreadService.UpdateSystemProcessThread(processThread);
 }
Пример #2
0
 public bool ToggleSystemProcessThreadEnabled(int systemProcessThreadID)
 {
     // ISystemProcessThreadService systemProcessThreadService = IoC.Resolve<ISystemProcessThreadService>("SystemProcessThreadService");
     SystemProcessThreadService systemProcessThreadService = new SystemProcessThreadService();
     return systemProcessThreadService.ToggleSystemProcessThreadEnabled(systemProcessThreadID);
 }
Пример #3
0
 public DataTransfer<List<SystemProcessThread>> GetSystemProcessThreadsByLastUpdateDate(DateTime lastUpdateDate)
 {
     // ISystemProcessThreadService systemProcessThreadService = IoC.Resolve<ISystemProcessThreadService>("SystemProcessThreadService");
     SystemProcessThreadService systemProcessThreadService = new SystemProcessThreadService();
     return systemProcessThreadService.GetSystemProcessThreadsByLastUpdateDate(lastUpdateDate);
 }
Пример #4
0
 public List<SystemProcessThread> GetSystemProcessThreadsByProcessID(int processID)
 {
     //ISystemProcessThreadService systemProcessThreadService = IoC.Resolve<ISystemProcessThreadService>("SystemProcessThreadService");
     SystemProcessThreadService systemProcessThreadService = new SystemProcessThreadService();
     return systemProcessThreadService.GetSystemProcessThreadByProcessID(processID);
 }
Пример #5
0
 public SystemProcessThread GetSystemProcessThreadByName(string threadName)
 {
     SystemProcessThreadService systemProcessThreadService = new SystemProcessThreadService();
        // ISystemProcessThreadService systemProcessThreadService = IoC.Resolve<ISystemProcessThreadService>("SystemProcessThreadService");
     return systemProcessThreadService.GetSystemProcessThreadByName(threadName);
 }