public RecommenderService(LiriksiContext context, IMapper mapper, IUserService userService, IRatingService ratingService)
 {
     _context       = context;
     _mapper        = mapper;
     _userService   = userService;
     _ratingService = ratingService;
 }
 public GenreService(LiriksiContext context)
 {
     _context = context;
 }
 public SongService(LiriksiContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
Exemple #4
0
 public PerformerService(LiriksiContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
 public LocationService(LiriksiContext context)
 {
     _context = context;
 }