Exemplo n.º 1
0
        public ActionResult ShiftIndex()
        {
            IShiftService service = new ShiftService();
            var           list    = service.GetAll();
            ShiftIndex    model   = new ShiftIndex();

            model.ListShift = list;
            return(View(model));
        }