public ActionResult Index()
 {
     return(View(crudCountry.GetAll()));
 }
Beispiel #2
0
 public ActionResult Form()
 {
     ViewBag.AllCountries = crudCountry.GetAll();
     ViewBag.AllShifts    = showShift.ShowAll();
     return(View());
 }