Ejemplo n.º 1
0
 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;
 }
Ejemplo n.º 2
0
 public AppDetailQuotesController(IAppDetailQuotesService appDetailQuotesService,
                                  IAppGeneralQuotesService appGeneralQuotesService)
 {
     _appDetailQuotesService  = appDetailQuotesService;
     _appGeneralQuotesService = appGeneralQuotesService;
 }