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