Example #1
0
 public CobEstadoCuentaService(IUnitOfWork unitOfWork,
                               IOptions <PaginationOptions> options,
                               ISapClient sapClient)
 {
     _unitOfWork        = unitOfWork;
     _sapClient         = sapClient;
     _paginationOptions = options.Value;
 }
 //Constructor
 public CobEstadoCuentaController(ICobEstadoCuentaService cobEstadoCuentaService,
                                  IMapper mapper,
                                  IUriService uriService,
                                  IOptions <PaginationOptions> options,
                                  IOfdTipoDocumentoService ofdTipoDocumentoService,
                                  IMtrClienteService mtrClienteService,
                                  ISapClient sapClient)
 {
     _cobEstadoCuentaService = cobEstadoCuentaService;
     _mapper            = mapper;
     _uriService        = uriService;
     _mtrClienteService = mtrClienteService;
     _sapClient         = sapClient;
     _paginationOptions = options.Value;
 }