Example #1
0
 public CommonTask(string taskCode, string taskType, TaskAwardInterface award, List <TaskConditionSPInterface> conditionSp,
                   string taskDesc, string taskDistrubtor, string taskOwner, List <TaskItemInterface> taskItems, string taskName, string taskStatus)
 {
     this.taskCode       = taskCode;
     this.taskType       = taskType;
     this.award          = award;
     this.conditionSp    = conditionSp;
     this.taskDesc       = taskDesc;
     this.taskDistrubtor = taskDistrubtor;
     this.taskOwner      = taskOwner;
     this.taskItems      = taskItems;
     this.taskName       = taskName;
     this.taskStatus     = taskStatus;
 }
 public FindSometingTask(string taskCode, string taskType, TaskAwardInterface award, List <TaskConditionSPInterface> conditionSp,
                         string taskDesc, string taskDistrubtor, string taskOwner, List <TaskItemInterface> taskItems, string taskName,
                         string taskStatus) : base(taskCode, taskType, award, conditionSp, taskDesc, taskDistrubtor, taskOwner, taskItems, taskName, taskStatus)
 {
 }
Example #3
0
 public void setTaskAward(TaskAwardInterface taskAward)
 {
     this.award = taskAward;
 }