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