public PriceOilController(DTO.SupportStructure.Configuration conf, ILogger <PriceOilController> logger, IHttpContextAccessor Context) : base(conf, logger, Context)
 {
     _service = new ServicePriceOil(conf, logger);
     _conf    = conf;
     _context = Context;
 }
Exemple #2
0
 public DefaultController(DTO.SupportStructure.Configuration conf, ILogger <C> logger, IHttpContextAccessor context)
 {
     _logger  = logger;
     _conf    = conf;
     _context = context;
 }
Exemple #3
0
 public ServicePriceOil(DTO.SupportStructure.Configuration conf, ILogger <PriceOilController> logger)
 {
     _logger = logger;
     _conf   = conf;
 }