public ActionResult ShiftIndex() { IShiftService service = new ShiftService(); var list = service.GetAll(); ShiftIndex model = new ShiftIndex(); model.ListShift = list; return(View(model)); }