Example #1
0
        //
        // GET: /TimeSheet/

        public ActionResult Index()
        {
            var timeSheetMasters = TimesheetRepository.GetAllTimeSheetMasters();

            return(View(timeSheetMasters.ToList()));
        }