Пример #1
0
 public AdminRepository()
 {
     _ctx = new StageSSPortalDbContext();
 }
 public GebruikerRepository(StageSSPortalDbContext context) : base(context)
 {
     ctx = context;
 }
Пример #3
0
 public SSHRepository()
 {
     ctx = new StageSSPortalDbContext();
 }
 public GebruikerRepository() : base(new StageSSPortalDbContext())
 {
     ctx         = (StageSSPortalDbContext)this.Context;
     userManager = new UserManager <Gebruiker>(new GebruikerRepository(ctx));
 }