public EmployeeShiftRespository(BillableDbContext billableDbContext)
 {
     _billableDbContext = billableDbContext;
 }
Example #2
0
 public DbStore(BillableDbContext billableDbContext)
 {
     //TODO: Inject Repository Dependency From Services
     _employeeShiftRepository = new EmployeeShiftRespository(billableDbContext);
 }