public PhotoRepository(DoctorHouseDbContext context)
 {
     this.context = context;
 }
Beispiel #2
0
 public AppointmentRepository(DoctorHouseDbContext context)
 {
     this.context = context;
 }
Beispiel #3
0
 public CustomerRepository(DoctorHouseDbContext context)
 {
     this.context = context;
 }
Beispiel #4
0
 public SpecialistRepository(DoctorHouseDbContext context)
 {
     this.context = context;
 }
 public UnitOfWork(DoctorHouseDbContext context)
 {
     this.context = context;
 }
Beispiel #6
0
 public CompanyRepository(DoctorHouseDbContext context)
 {
     this.context = context;
 }