예제 #1
0
 public ProjectRepository(UnitOfWork uow)
 {
     ctx = uow.Context;
 }
예제 #2
0
 public ProjectRepository()
 {
     ctx = new BEPDbContext();
 }
예제 #3
0
 public GemeenteRepository(UnitOfWork uow)
 {
     ctx = uow.Context;
 }
예제 #4
0
 public GemeenteRepository()
 {
     ctx        = new BEPDbContext();
     categorien = ctx.Categorieen.ToList();
 }
예제 #5
0
 public BegrotingRepository(UnitOfWork uow)
 {
     ctx = uow.Context;
 }
예제 #6
0
 public BegrotingRepository()
 {
     ctx = new BEPDbContext();
 }