Esempio n. 1
0
        public ActionResult FinalizePeriodHours(int caseID, DateTime periodStartDate)
        {
            var repo = new Repos.HoursRepo();

            repo.FinalizeAllPerCaseAndPeriod(caseID, periodStartDate);

            return(Content("OK"));
        }
Esempio n. 2
0
 public HoursController()
 {
     repository = new Repos.HoursRepo();
     service    = new HoursService();
     svcHours   = new HourService(AppService.Current.DataContextV2);
 }
Esempio n. 3
0
 public ReportingService()
 {
     hoursRepo = new Repos.HoursRepo();
     _context  = AppService.Current.DataContextV2;
 }
Esempio n. 4
0
 public DashboardService()
 {
     hoursRepo = new Repos.HoursRepo();
     _context  = new Data.Models.CoreEntityModel();
 }