コード例 #1
0
 public EmailRepository(CatalogusContext context)
 {
     this.context = context;
     this.emails  = context.Emails;
 }
コード例 #2
0
 public DoelgroepRepository(CatalogusContext context)
 {
     this.context = context;
     doelgroepen  = context.Doelgroepen;
 }
コード例 #3
0
 public LeergebiedRepository(CatalogusContext context)
 {
     this.context = context;
     leergebieden = context.Leergebieden;
 }
コード例 #4
0
 public GebruikerRepository(CatalogusContext context)
 {
     this.context    = context;
     this.gebruikers = context.Users;
 }
コード例 #5
0
 public ProductRepository(CatalogusContext context)
 {
     this.context = context;
     producten    = context.Producten;
 }
コード例 #6
0
 public ReservatieRepository(CatalogusContext context)
 {
     this.context     = context;
     this.reservaties = context.Reservaties;
 }