public DoctorsController(IDoctorDbService dbService) { _dbService = dbService; }
public DoctorController(IDoctorDbService service) { _service = service; }
public DoctorsController(IDoctorDbService context) { _context = context; }