Exemple #1
0
 public DentistAppService(IVisitRepository visitRepository, IPatientRepository patientRepository, IDentistRepository dentistRepository, IAddressRepository addressRepository, IMapper mapper)
 {
     _visitRepository   = visitRepository;
     _patientRepository = patientRepository;
     _dentistRepository = dentistRepository;
     _addressRepository = addressRepository;
     _mapper            = mapper;
 }
 public DentistService(IUnitOfWork unitOfWork,
                       INotifier notifier,
                       UserManager <IdentityUser> userManager,
                       IDentistRepository dentistRepository,
                       IEmailService emailService, ISchedulingRepository schedulingRepository)
     : base(unitOfWork, notifier, userManager)
 {
     _userManager          = userManager;
     _dentistRepository    = dentistRepository;
     _emailService         = emailService;
     _schedulingRepository = schedulingRepository;
 }
Exemple #3
0
 public SchedulingService(IUnitOfWork unitOfWork,
                          INotifier notifier,
                          UserManager <IdentityUser> userManager,
                          ISchedulingRepository schedulingRepository,
                          IDentistService dentistService,
                          IPatientService patientService,
                          IDentistRepository dentistRepository,
                          IPatientRepository patientRepository,
                          IAttendantRepository attendantRepository)
     : base(unitOfWork, notifier, userManager)
 {
     _schedulingRepository = schedulingRepository;
     _dentistService       = dentistService;
     _patientService       = patientService;
     _dentistRepository    = dentistRepository;
     _patientRepository    = patientRepository;
     _attendantRepository  = attendantRepository;
 }
Exemple #4
0
 public DentistController(IDentistRepository dentistRepository)
 {
     _dentistRepository = dentistRepository;
 }
Exemple #5
0
 public DentistsController(IDentistRepository repository)
 {
     _repository = repository;
 }
 public DentistsController(IDentistRepository repository, IMapper mapper)
 {
     _repository = repository;
     _mapper     = mapper;
 }