// GET: Procedure public ActionResult Create() { ViewBag.date = DateTime.Now.ToString("yyyy-MM-dd"); ViewBag.maxDate = DateTime.Now.ToString("yyyy-MM-dd"); ViewBag.minDate = (DateTime.Now.AddDays(-14)).ToString("yyyy-MM-dd"); ViewBag.deparmentTable = con.getDepartments(); ViewBag.procedureType = con.getProcedureType(); ViewBag.identifyType = con.getIdentifyType(); return(View()); }
public ActionResult Statistic() { ViewBag.deparmentTable = con.getDepartments(); ViewBag.platformersTable = con.getPlatformers(); return(View()); }
/**/ public ActionResult UserList() { ViewBag.table = con.getViewUsers(); return(View()); } /**/ public ActionResult CreateUser() { ViewBag.deparmentTable = con.getDepartments(); return(View()); }