Ejemplo n.º 1
0
        public DataTransfer <List <SystemProcessThread> > GetSystemProcessThreadsByLastUpdateDate(DateTime lastUpdateDate)
        {
            // ISystemProcessThreadService systemProcessThreadService = IoC.Resolve<ISystemProcessThreadService>("SystemProcessThreadService");
            SystemProcessThreadService systemProcessThreadService = new SystemProcessThreadService();

            return(systemProcessThreadService.GetSystemProcessThreadsByLastUpdateDate(lastUpdateDate));
        }
Ejemplo n.º 2
0
        public bool ToggleSystemProcessThreadEnabled(int systemProcessThreadID)
        {
            // ISystemProcessThreadService systemProcessThreadService = IoC.Resolve<ISystemProcessThreadService>("SystemProcessThreadService");
            SystemProcessThreadService systemProcessThreadService = new SystemProcessThreadService();

            return(systemProcessThreadService.ToggleSystemProcessThreadEnabled(systemProcessThreadID));
        }
Ejemplo n.º 3
0
        public SystemProcessThread GetSystemProcessThreadByName(string threadName)
        {
            SystemProcessThreadService systemProcessThreadService = new SystemProcessThreadService();

            // ISystemProcessThreadService systemProcessThreadService = IoC.Resolve<ISystemProcessThreadService>("SystemProcessThreadService");
            return(systemProcessThreadService.GetSystemProcessThreadByName(threadName));
        }
Ejemplo n.º 4
0
        public List <SystemProcessThread> GetSystemProcessThreadsByProcessID(int processID)
        {
            //ISystemProcessThreadService systemProcessThreadService = IoC.Resolve<ISystemProcessThreadService>("SystemProcessThreadService");
            SystemProcessThreadService systemProcessThreadService = new SystemProcessThreadService();

            return(systemProcessThreadService.GetSystemProcessThreadByProcessID(processID));
        }
Ejemplo n.º 5
0
        public SystemProcessThread UpdateSystemProcessThread(SystemProcessThread processThread)
        {
            // ISystemProcessThreadService systemProcessThreadService = IoC.Resolve<ISystemProcessThreadService>("SystemProcessThreadService");
            SystemProcessThreadService systemProcessThreadService = new SystemProcessThreadService();

            return(systemProcessThreadService.UpdateSystemProcessThread(processThread));
        }