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