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