Example #1
0
 public TaskPeopleObjectCollection GetAssigneesSupplierByTaskID(TaskObject task)
 {
     TaskPeopleObjectCollection taskPeoples;
     try
     {
         taskPeoples = new TaskPeopleDataService().GetAssigneesSupplierByTaskID(task.TaskID);
     }
     catch (System.Exception exception1)
     {
         System.Exception innerException = exception1;
         throw new System.Exception(MethodBase.GetCurrentMethod().Name, innerException);
     }
     return taskPeoples;
 }
Example #2
0
 public TaskPeopleObjectCollection GetAll()
 {
     TaskPeopleObjectCollection taskPeoples;
     try
     {
         taskPeoples = new TaskPeopleDataService().GetAll();
     }
     catch (System.Exception exception1)
     {
         System.Exception innerException = exception1;
         throw new System.Exception(MethodBase.GetCurrentMethod().Name, innerException);
     }
     return taskPeoples;
 }