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