public JsonResult AddEmployees(int id, int[] employees, int chief)
 {
     if (employees.Contains(chief))
     {
         return(Json(new { success = false }, JsonRequestBehavior.AllowGet));
     }
     projectService.AddEmployees(id, employees, chief);
     return(Json(new { success = true }, JsonRequestBehavior.AllowGet));
 }