Exemplo n.º 1
0
 public RoleService(eCoursesContext context, IMapper mapper) : base(context, mapper)
 {
 }
Exemplo n.º 2
0
 public BaseService(eCoursesContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
Exemplo n.º 3
0
 public VideoLectureService(eCoursesContext context, IMapper mapper) : base(context, mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
Exemplo n.º 4
0
 public UserService(eCoursesContext context, IMapper mapper) : base(context, mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
Exemplo n.º 5
0
 public RecommendationService(eCoursesContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
Exemplo n.º 6
0
 public static void Init(eCoursesContext context)
 {
     context.Database.Migrate();
 }
Exemplo n.º 7
0
 public SubcategoryService(eCoursesContext context, IMapper mapper) : base(context, mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
Exemplo n.º 8
0
 public TransactionService(eCoursesContext context, IMapper mapper) : base(context, mapper)
 {
     _context = context;
     _mapper  = mapper;
 }