Example #1
0
 public ActionResult NotifyUsers(int projectId)
 {
     try
     {
         _userBll.NotifyAboutProjectStart(projectId);
         return(Ok());
     } catch (Exception e)
     {
         return(BadRequest(Json(e)));
     }
 }