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