//GET DETAIL DOUBLE CHECK THIS public ActionResult Details(int id) { var service = new ScheduleAdminService(id); var model = service.GetScheduleAdminById(id); return(View(model)); }
public ActionResult Edit(int id) { var service = new ScheduleAdminService(id); var detail = service.GetScheduleAdminById(id); var model = new ScheduleAdminEdit { EventID = detail.EventID, ShopID = detail.ShopID, EventName = detail.EventName, StartTime = detail.StartTime, EndTime = detail.EndTime, ModifiedUtc = detail.ModifiedUtc }; return(View(model)); }