public UserService(ZoundContext context, ILogger <UserService> _logger)
 {
     this._context = context;
     this._logger  = _logger;
     this._users   = context.Users;
 }
 public SongService(ZoundContext context)
 {
     this._context = context;
 }
 public MusicRoomService(ZoundContext context)
 {
     this._context = context;
 }
Example #4
0
 public PostService(ZoundContext context, ILogger <UserService> _logger)
 {
     this._context = context;
     this._logger  = _logger;
     this._posts   = context.Posts;
 }
 public ArtistService(ZoundContext context)
 {
     this._context = context;
 }