示例#1
0
 public RecommenderService(GuitarTabsContext context, IMapper mapper, IUsersService usersService, INotationsService notationService)
 {
     _context         = context;
     _mapper          = mapper;
     _usersService    = usersService;
     _notationService = notationService;
 }
示例#2
0
 public RatingsService(GuitarTabsContext context, IMapper mapper, IUsersService usersService)
 {
     _context      = context;
     _mapper       = mapper;
     _usersService = usersService;
 }
示例#3
0
 public UsersService(GuitarTabsContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
 public NotationCorrectionsService(GuitarTabsContext context, IMapper mapper, IUsersService usersService)
 {
     _context      = context;
     _mapper       = mapper;
     _usersService = usersService;
 }
 public SearchService(GuitarTabsContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }