Exemple #1
0
 public UserService(
     IDoctorRepository doctorRepository,
     IPasswordEncryptionUtil passwordEncryptionUtil,
     IMapper mapper
     )
 {
     _doctorRepository       = doctorRepository;
     _passwordEncyptionUtill = passwordEncryptionUtil;
     _mapper = mapper;
 }
 public DoctorCreateDto(
     IDoctorService doctorService,
     IPersonService personService,
     ISpecializationService specializationService,
     IPasswordEncryptionUtil passwordEncryptionUtil)
 {
     _doctorService          = doctorService;
     _personService          = personService;
     _specializationService  = specializationService;
     _passwordEncryptionUtil = passwordEncryptionUtil;
 }