コード例 #1
0
 public QuoteService(MoviePickContext context, IMapper mapper) : base(context, mapper)
 {
 }
コード例 #2
0
 public NewsService(MoviePickContext _context, IMapper _mapper) : base(_context, _mapper)
 {
 }
コード例 #3
0
 public BaseCRUDService(MoviePickContext context, IMapper mapper) : base(context, mapper)
 {
 }
コード例 #4
0
 public TvshowSeasonEpisodeService(MoviePickContext context, IMapper mapper) : base(context, mapper)
 {
 }
コード例 #5
0
 public static void Init(MoviePickContext context)
 {
     context.Database.EnsureCreated();
 }
コード例 #6
0
 public CommentService(MoviePickContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
コード例 #7
0
 public RecommendService(MoviePickContext context, IMapper mapper)
 {
     db      = context;
     _mapper = mapper;
 }
コード例 #8
0
 public UserService(MoviePickContext _context, IMapper _mapper)
 {
     this._context = _context;
     this._mapper  = _mapper;
 }
コード例 #9
0
 public MovieAndTvShowService(MoviePickContext context, IMapper mapper) : base(context, mapper)
 {
 }
コード例 #10
0
 public QuoteOfTheDay(MoviePickContext context, IMapper _mapper)
 {
     _context     = context;
     this._mapper = _mapper;
 }
コード例 #11
0
 public BaseService(MoviePickContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
コード例 #12
0
 public PersonService(MoviePickContext _context, IMapper _mapper) : base(_context, _mapper)
 {
 }