Exemplo n.º 1
0
 public ExecTaskInfo(Ts_Tasks tasks, Ts_TaskExec taskExec) : this(tasks)
 {
     if (taskExec != null)
     {
         this.LastExecTime = taskExec.LastExecTime ?? DateTime.MinValue;
     }
 }
Exemplo n.º 2
0
 public ModelTaskList(Ts_Tasks tasks, Ts_TaskExec taskExec) : this(tasks)
 {
     if (taskExec != null)
     {
         this.LastExecTime       = taskExec.LastExecTime;
         this.LastExecResultCode = taskExec.LastExecResultCode ?? -1000;
     }
 }
Exemplo n.º 3
0
 public ModelTaskList(Ts_Tasks tasks, Ts_TaskExec taskExec, string CreateUserName) : this(tasks)
 {
     if (taskExec != null)
     {
         this.LastExecTime       = taskExec.LastExecTime;
         this.LastExecResultCode = taskExec.LastExecResultCode ?? -1000;
     }
     this.CreateUserName = CreateUserName;
 }