public ActionResult ChangeDates(int course, int company, int department, int user, string start, string end) { bool rez = StatisticsRepository.ChangeDates(course, company, department, user, start, end); if (rez) { return(Json("Ok", JsonRequestBehavior.AllowGet)); } else { return(Json("Error", JsonRequestBehavior.AllowGet)); } }