public AppGeneralQuotesService(IUnitOfWork unitOfWork, IOptions <PaginationOptions> options, IMapper mapper, IOfdCotizacionService ofdCotizacionService, IMtrClienteService mtrClienteService, IAppDetailQuotesService appDetailQuotesService, ICotizacionService cotizacionService ) { _unitOfWork = unitOfWork; _mapper = mapper; _ofdCotizacionService = ofdCotizacionService; _mtrClienteService = mtrClienteService; _appDetailQuotesService = appDetailQuotesService; _cotizacionService = cotizacionService; _paginationOptions = options.Value; }
public AppDetailQuotesController(IAppDetailQuotesService appDetailQuotesService, IAppGeneralQuotesService appGeneralQuotesService) { _appDetailQuotesService = appDetailQuotesService; _appGeneralQuotesService = appGeneralQuotesService; }