Пример #1
0
 public LeadArtistsController(OrchestraContext context, LeadArtistService leadArtistService)
 {
     _context = context;
     this.leadArtistService = leadArtistService;
 }
Пример #2
0
 public LeadArtistRepositorycs(OrchestraContext dbContext) : base(dbContext)
 {
 }
 public InstrumentRepository(OrchestraContext dbContext) : base(dbContext)
 {
 }
Пример #4
0
 public AwardsController(OrchestraContext context)
 {
     _context = context;
 }
 public OrchestraRepository(OrchestraContext dbContext) : base(dbContext)
 {
 }
Пример #6
0
 public BuildingFacilitiesController(OrchestraContext context)
 {
     _context = context;
 }
 public LocationRepository(OrchestraContext dbContext) : base(dbContext)
 {
 }
 public BaseRepository(OrchestraContext dbContext)
 {
     this.dbContext = dbContext;
 }
Пример #9
0
 public InstrumentsController(OrchestraContext context, InstrumentServices instrumentServices)
 {
     _context = context;
     this.instrumentServices = instrumentServices;
 }
Пример #10
0
 public UsersController(OrchestraContext context)
 {
     _context = context;
 }