示例#1
0
 // Constructor using dependency injection
 public TreatmentService(HKClinicDbContext context)
 {
     db = context;
 }
示例#2
0
 // Constructor using dependency injection
 public StudentService(HKClinicDbContext context)
 {
     db = context;
 }
示例#3
0
 // Constructor using dependency injection
 public ParentService(HKClinicDbContext context)
 {
     db = context;
 }
示例#4
0
 // Constructor using dependency injection
 public EmployeeService(HKClinicDbContext context)
 {
     db = context;
 }
示例#5
0
 // Constructor using dependency injection
 public SickLeaveService(HKClinicDbContext context)
 {
     db = context;
 }
示例#6
0
 // Constructor using dependency injection
 public ClassService(HKClinicDbContext context)
 {
     db = context;
 }
示例#7
0
 // Constructor using dependency injection
 public AddressService(HKClinicDbContext context)
 {
     db = context;
 }
示例#8
0
 // Constructor using dependency injection
 public TeacherService(HKClinicDbContext context)
 {
     db = context;
 }
示例#9
0
 // Constructor using dependency injection
 public FamilyDoctorService(HKClinicDbContext context)
 {
     db = context;
 }
示例#10
0
 // Constructor using dependency injection
 public NurseService(HKClinicDbContext context)
 {
     db = context;
 }
示例#11
0
 // Constructor using dependency injection
 public InventoryService(HKClinicDbContext context)
 {
     db = context;
 }
示例#12
0
 // Constructor using dependency injection
 public ExternalMedicalReportService(HKClinicDbContext context)
 {
     db = context;
 }
示例#13
0
 // Constructor using dependency injection
 public AppointmentService(HKClinicDbContext context)
 {
     db = context;
 }
示例#14
0
 // Constructor using dependency injection
 public VisitService(HKClinicDbContext context)
 {
     db = context;
 }