Beispiel #1
0
 public ContratoController(IContratoRepository repo, IMapper mapper, ICDPRepository cdpRepo,
                           DataContext dataContext, IGeneralInterface generalInterface,
                           IProcesoCreacionArchivoExcel procesoCreacionExcelInterface)
 {
     _mapper           = mapper;
     _repo             = repo;
     _cdpRepo          = cdpRepo;
     _dataContext      = dataContext;
     _generalInterface = generalInterface;
     _procesoCreacionExcelInterface = procesoCreacionExcelInterface;
 }
Beispiel #2
0
 public CDPController(ICDPRepository repo, IUsuarioRepository usuarioRepo, IMapper mapper,
                      DataContext dataContext, IGeneralInterface generalInterface,
                      IProcesoCreacionArchivoExcel procesoCreacionExcelInterface)
 {
     _usuarioRepo      = usuarioRepo;
     _mapper           = mapper;
     _repo             = repo;
     _dataContext      = dataContext;
     _generalInterface = generalInterface;
     _procesoCreacionExcelInterface = procesoCreacionExcelInterface;
 }