Example #1
0
 public DoctorsController(IDoctorDbService dbService)
 {
     _dbService = dbService;
 }
Example #2
0
 public DoctorController(IDoctorDbService service)
 {
     _service = service;
 }
Example #3
0
 public DoctorsController(IDoctorDbService context)
 {
     _context = context;
 }