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