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