Exemplo n.º 1
0
 /// <summary>
 /// This is injecting the OrchestraDbContext into the DbOrchestraRepository
 /// </summary>
 /// <param name="db"></param>
 public DbOrchestraRepository(OrchestraDbContext db)
 {
     _db = db;
 }
Exemplo n.º 2
0
 public QueuesController(ILogger <QueuesController> logger, OrchestraDbContext context)
 {
     _logger  = logger;
     _context = context;
 }