Ejemplo n.º 1
0
 public ClinicController(PeoheDbContext context, ClinicService clinicService)
 {
     dbContext          = context;
     this.clinicService = clinicService;
 }
Ejemplo n.º 2
0
 public AttendanceController(PeoheDbContext context, AttendanceService attendanceService)
 {
     dbContext = context;
     this.attendanceService = attendanceService;
 }