Example #1
0
 public CRUDService(eMusicContext context, IMapper mapper) : base(context, mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
Example #2
0
 public RoleService(eMusicContext context, IMapper mapper) : base(context, mapper)
 {
 }
Example #3
0
 public static void Init(eMusicContext context)
 {
     context.Database.Migrate();
 }
 public ReviewService(eMusicContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
Example #5
0
 public BaseService(eMusicContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
 public RecommendationService(eMusicContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }