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