public SessionController(IBISessionRepository bISessionRepository)
 {
     _bISessionRepository = bISessionRepository;
 }
 public BlVisionMovieRepository(IBISessionRepository bISessionRepository, IBIMovieRepository bIMovieRepository, IMapper mappingProfile) : base(mappingProfile)
 {
     _bISessionRepository = bISessionRepository;
     _bIMovieRepository   = bIMovieRepository;
     _context             = DbContextService.GetDbContext();
 }