예제 #1
0
 public TaskSearchMethod(
     string TaskKeyword,
     TaskSearchMethodType SearchMethod)
 {
     this.TaskKeyword  = TaskKeyword;
     this.SearchMethod = SearchMethod;
 }
예제 #2
0
 public AllTaskSpecifyByKeywordViewModel(
     string TaskName,
     TaskSearchMethodType TaskSearchMethodType)
 {
     _TaskName             = TaskName;
     _TaskSearchMethodType = TaskSearchMethodType;
 }
예제 #3
0
 public TaskReportItemViewModel(
     string TaskName,
     TaskSearchMethodType TaskSearchMethod,
     int?WorkingMinutes)
 {
     this.TaskName             = TaskName;
     this.TaskSearchMethodType = TaskSearchMethod;
     this.WorkingMinutes       = WorkingMinutes;
 }
예제 #4
0
 public AllTaskSpecifyByKeywordViewModel()
 {
     _TaskName             = "";
     _TaskSearchMethodType = TaskSearchMethodType.FirstMatch;
 }