public AuthRepository(IDoctorRepository doctorRepository, ITehnicianRepository tehnicianRepository, IAdminRepository adminRepository)
 {
     this.doctorRepository    = doctorRepository;
     this.tehnicianRepository = tehnicianRepository;
     this.adminRepository     = adminRepository;
 }
Example #2
0
 public TehniciansController(IMapper mapper, ITehnicianRepository repository, IUnitOfWork unitOfWork)
 {
     this.mapper     = mapper;
     this.repository = repository;
     this.unitOfWork = unitOfWork;
 }