コード例 #1
0
 public EmployeeShiftRespository(BillableDbContext billableDbContext)
 {
     _billableDbContext = billableDbContext;
 }
コード例 #2
0
ファイル: DbStore.cs プロジェクト: xpacer/BillableHours
 public DbStore(BillableDbContext billableDbContext)
 {
     //TODO: Inject Repository Dependency From Services
     _employeeShiftRepository = new EmployeeShiftRespository(billableDbContext);
 }