コード例 #1
0
 // Constructor
 public BedrijfRepository(InternshipContext context)
 {
     this.context = context;
     bedrijven = context.Bedrijven;
     opdrachten = context.Opdrachten;
     contactpersonen = context.ContactPersonen;
 }
コード例 #2
0
 public OpdrachtenRepository(InternshipContext context)
 {
     this.Context = context;
     this.opdrachten = context.Opdrachten;
 }
コード例 #3
0
 public SpecialisatieRepository(InternshipContext context)
 {
     this.context = context;
     this.specialisaties = context.Specialisaties;
 }
コード例 #4
0
 // Constructor
 public StudentRepository(InternshipContext context)
 {
     this.context = context;
     studenten = context.Studenten;
 }
コード例 #5
0
 public UserRepository(InternshipContext context)
 {
     this.context = context;
     this.users = context.Users;
 }
コード例 #6
0
 // Constructor
 public StagebegeleiderRepository(InternshipContext context)
 {
     this.context = context;
     stagebegeleiders = context.Stagebegeleiders;
 }