コード例 #1
0
 public UserService(ZoundContext context, ILogger <UserService> _logger)
 {
     this._context = context;
     this._logger  = _logger;
     this._users   = context.Users;
 }
コード例 #2
0
 public SongService(ZoundContext context)
 {
     this._context = context;
 }
コード例 #3
0
 public MusicRoomService(ZoundContext context)
 {
     this._context = context;
 }
コード例 #4
0
 public PostService(ZoundContext context, ILogger <UserService> _logger)
 {
     this._context = context;
     this._logger  = _logger;
     this._posts   = context.Posts;
 }
コード例 #5
0
 public ArtistService(ZoundContext context)
 {
     this._context = context;
 }