// Constructor
 public BedrijfRepository(InternshipContext context)
 {
     this.context = context;
     bedrijven = context.Bedrijven;
     opdrachten = context.Opdrachten;
     contactpersonen = context.ContactPersonen;
 }
 public OpdrachtenRepository(InternshipContext context)
 {
     this.Context = context;
     this.opdrachten = context.Opdrachten;
 }
 public SpecialisatieRepository(InternshipContext context)
 {
     this.context = context;
     this.specialisaties = context.Specialisaties;
 }
 // Constructor
 public StudentRepository(InternshipContext context)
 {
     this.context = context;
     studenten = context.Studenten;
 }
 public UserRepository(InternshipContext context)
 {
     this.context = context;
     this.users = context.Users;
 }
 // Constructor
 public StagebegeleiderRepository(InternshipContext context)
 {
     this.context = context;
     stagebegeleiders = context.Stagebegeleiders;
 }