Beispiel #1
0
 public LicenciaController(ILicenciaRepository repository,
                           IUtilRepository utilRepository,
                           IMedicoRepository medicoRepository)
 {
     licenciarepository = repository;
     _utilrepository    = utilRepository;
     _medicorepository  = medicoRepository;
 }
Beispiel #2
0
 public LicenciaController(ILicenciaRepository licenciaRepository,
                           IPersonaRepository personaRepository,
                           ITipoDocumentoRepository tipoDocumentoRepository,
                           IHttpContextAccessor contextAccessor)
 {
     _licenciaRepository      = licenciaRepository;
     _personaRepository       = personaRepository;
     _tipoDocumentoRepository = tipoDocumentoRepository;
     _contextAccessor         = contextAccessor;
 }
Beispiel #3
0
 public LicenciaService(IUnitOfWork unitOfWork, ILicenciaRepository repository) : base(unitOfWork, repository)
 {
 }