Ejemplo n.º 1
0
 public QuotesController(ILogger <QuotesController> logger, ApplicationDbContext db,
                         IMoexGrabberService moexGrabberService, IFinhubGrabberService finhubGrabberService)
 {
     _logger               = logger;
     _context              = db;
     _moexGrabberService   = moexGrabberService;
     _finhubGrabberService = finhubGrabberService;
 }
Ejemplo n.º 2
0
 public MoexGrabberJob(IMoexGrabberService moexGrabberService, IHubContext <QuotesHub> context) : base(context)
 {
     _moexGrabberService = moexGrabberService;
 }