コード例 #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
ファイル: ArtistService.cs プロジェクト: nika19du/MusicWorld
 public ArtistService(MusicWorldContext context)
 {
     this.context = context;
 }
コード例 #8
0
 public AlbumsController(MusicWorldContext context)
 {
     _context = context;
 }