Ejemplo n.º 1
0
 public StatusCompraService(AppDbContext context, HistoricoService historicoService, HelperService helperService,
                            ILogger <StatusCompraService> logger)
 {
     this.context          = context;
     this.historicoService = historicoService;
     this.helperService    = helperService;
     this.logger           = logger;
 }
Ejemplo n.º 2
0
 public RegraCashbackService(AppDbContext context, HistoricoService historicoService, HelperService helperService,
                             ILogger <RegraCashbackService> logger)
 {
     this.context          = context;
     this.historicoService = historicoService;
     this.helperService    = helperService;
     this.logger           = logger;
 }
Ejemplo n.º 3
0
 public TipoHistoricoService(AppDbContext context, HistoricoService historicoService, HelperService helperService,
                             ILogger <TipoHistoricoService> logger)
 {
     this.context          = context;
     this.historicoService = historicoService;
     this.helperService    = helperService;
     this.logger           = logger;
 }
Ejemplo n.º 4
0
 public ParametroSistemaService(AppDbContext context, HistoricoService historicoService, HelperService helperService,
                                ILogger <ParametroSistemaService> logger)
 {
     this.context          = context;
     this.historicoService = historicoService;
     this.helperService    = helperService;
     this.logger           = logger;
 }
Ejemplo n.º 5
0
 public CompraService(AppDbContext context, HistoricoService historicoService, HelperService helperService,
                      RegrasCompra regrasCompra, ILogger <CompraService> logger)
 {
     this.context          = context;
     this.historicoService = historicoService;
     this.helperService    = helperService;
     this.regrasCompra     = regrasCompra;
     this.logger           = logger;
 }
Ejemplo n.º 6
0
 public RevendedorService(AppDbContext context, HistoricoService historicoService, HelperService helperService,
                          IOptions <SettingsOptions> settingsOptions, ILogger <RevendedorService> logger)
 {
     this.context          = context;
     this.historicoService = historicoService;
     this.helperService    = helperService;
     this.settingsOptions  = settingsOptions.Value;
     this.logger           = logger;
 }