Esempio n. 1
0
 public ProjectRepository(UnitOfWork uow)
 {
     ctx = uow.Context;
 }
Esempio n. 2
0
 public ProjectRepository()
 {
     ctx = new BEPDbContext();
 }
Esempio n. 3
0
 public GemeenteRepository(UnitOfWork uow)
 {
     ctx = uow.Context;
 }
Esempio n. 4
0
 public GemeenteRepository()
 {
     ctx        = new BEPDbContext();
     categorien = ctx.Categorieen.ToList();
 }
 public BegrotingRepository(UnitOfWork uow)
 {
     ctx = uow.Context;
 }
 public BegrotingRepository()
 {
     ctx = new BEPDbContext();
 }