Пример #1
0
 public UserServices(MusicWorldContext context)
 {
     this.context = context;
 }
Пример #2
0
 public ArtistsController(IArtistService artistService, ICloudinaryService cloudinaryService, MusicWorldContext context)
 {
     this.artistService     = artistService;
     this.cloudinaryService = cloudinaryService;
     this.context           = context;
 }
Пример #3
0
 public SongsController(MusicWorldContext context)
 {
     _context = context;
 }
Пример #4
0
 public AlbumService(MusicWorldContext context)
 {
     this.context = context;
 }
Пример #5
0
 public UsersController(IUserServices services, MusicWorldContext context)
 {
     this.services = services;
     this.context  = context;
 }
Пример #6
0
 public CatalogsController(MusicWorldContext context)
 {
     _context = context;
 }
Пример #7
0
 public ArtistService(MusicWorldContext context)
 {
     this.context = context;
 }
Пример #8
0
 public AlbumsController(MusicWorldContext context)
 {
     _context = context;
 }