Пример #1
0
 public ActionResult <IEnumerable <WorkOrderTaskView> > GetTasks(int id)
 {
     try
     {
         var tasks = db.SelectTasks(id);
         return(tasks.ToList());
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }