public ProcesoLiquidacionSolicitudPago(IListaRepository listaRepository, IPlanPagoRepository planPagoRepository, ITerceroRepository terceroRepository, IGeneralInterface generalInterface) { this._repoLista = listaRepository; this._planPagoRepository = planPagoRepository; this._terceroRepository = terceroRepository; this._generalInterface = generalInterface; }
public SolicitudPagoController(ISolicitudPagoRepository repo, IMapper mapper, DataContext dataContext, IGeneralInterface generalInterface, IPlanPagoRepository planPagoRepository, IListaRepository listaRepository, IProcesoLiquidacionSolicitudPago procesoLiquidacion, ITerceroRepository terceroRepository) { _mapper = mapper; _repo = repo; _dataContext = dataContext; _generalInterface = generalInterface; _listaRepository = listaRepository; _planPagoRepository = planPagoRepository; _procesoLiquidacion = procesoLiquidacion; _terceroRepository = terceroRepository; }
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; }
public CuotasController(IPlanPagoRepository planPagoRepository, IMapper mapper) { _planesRepo = planPagoRepository; _mapper = mapper; }