Exemple #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;
 }
Exemple #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;
 }
Exemple #3
0
 public ClavePresupuestalContableController(IUnitOfWork unitOfWork, IClavePresupuestalContableRepository repo,
                                            IMapper mapper, DataContext dataContext, IListaRepository listaRepository,
                                            IGeneralInterface generalInterface,
                                            IProcesoCreacionArchivoExcel procesoCreacionExcelInterface)
 {
     this._mapper           = mapper;
     this._repo             = repo;
     this._unitOfWork       = unitOfWork;
     _dataContext           = dataContext;
     this._generalInterface = generalInterface;
     this._listaRepository  = listaRepository;
     this._procesoCreacionExcelInterface = procesoCreacionExcelInterface;
 }
Exemple #4
0
 public PlanPagoController(IUnitOfWork unitOfWork, IPlanPagoRepository repo,
                           IMapper mapper, DataContext dataContext,
                           IMailService mailService,
                           IProcesoLiquidacionPlanPago procesoLiquidacion,
                           IGeneralInterface generalInterface,
                           IProcesoCreacionArchivoExcel procesoCreacionExcelInterface)
 {
     this._mapper                        = mapper;
     this._repo                          = repo;
     this._unitOfWork                    = unitOfWork;
     this.mailService                    = mailService;
     _dataContext                        = dataContext;
     this._procesoLiquidacion            = procesoLiquidacion;
     this._generalInterface              = generalInterface;
     this._procesoCreacionExcelInterface = procesoCreacionExcelInterface;
 }
Exemple #5
0
 public PlanAdquisicionController(IPlanAdquisicionRepository repo,
                                  IActividadGeneralRepository repoActividad,
                                  IActividadGeneralService serviceActividad,
                                  IListaRepository repoLista,
                                  DataContext dataContext,
                                  IGeneralInterface generalInterface,
                                  IMapper mapper,
                                  IProcesoCreacionArchivoExcel procesoCreacionExcelInterface)
 {
     _repo             = repo;
     _mapper           = mapper;
     _dataContext      = dataContext;
     _generalInterface = generalInterface;
     _repoActividad    = repoActividad;
     _serviceActividad = serviceActividad;
     _repoLista        = repoLista;
     this._procesoCreacionExcelInterface = procesoCreacionExcelInterface;
 }