예제 #1
0
 public string AddTask(TaskDTO model)
 {
     if (!String.IsNullOrWhiteSpace(model.Name))
     {
         TaskService.AddEmployee(model);
         return("Something went wrong with collection.");
     }
     return("Something went wrong with collection.");
 }