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