protected bool ValidateModel(RosterModel model) { return ModelState.IsValid; }
public ActionResult Roster(RosterFiltersModel input, RosterModel roster, bool isApproveModified = false) { RosterModel model = EmploymentBl.GetRosterModel(input); /* string error = string.Empty; if (isApproveModified) { EmploymentBl.SaveApprovals(roster, out error); } */ return View(model); }