public PlayersController(liveChatAppContext context)
 {
     _context = context;
 }
Exemplo n.º 2
0
 public VideosController(liveChatAppContext context, IMapper mapper)
 {
     _context             = context;
     _mapper              = mapper;
     this.videoRepository = new ScribrAPI.DAL.VideoRepository(new liveChatAppContext());
 }
 public VideoRepository(liveChatAppContext context)
 {
     this.context = context;
 }
Exemplo n.º 4
0
 public VideosController(liveChatAppContext context)
 {
     _context = context;
 }