Beispiel #1
0
 public LoginController(CinemaApplicationContext context, IConfiguration configuration, IBILoginRepository bILoginRepository)
 {
     _context           = DbContextService.GetDbContext();
     _configuration     = configuration;
     _bILoginRepository = bILoginRepository;
 }
Beispiel #2
0
 public BlMovieRepository(IMapper mappingProfile) : base(mappingProfile)
 {  //VisionMoviede movie çağrığımız için tekrardan movie visionmovieyi çağırınca hata aldık.
     _context = DbContextService.GetDbContext();
 }
 public BlVisionMovieRepository(IBISessionRepository bISessionRepository, IBIMovieRepository bIMovieRepository, IMapper mappingProfile) : base(mappingProfile)
 {
     _bISessionRepository = bISessionRepository;
     _bIMovieRepository   = bIMovieRepository;
     _context             = DbContextService.GetDbContext();
 }
 public BlMovieHouseRepository(IMapper mappingProfile) : base(mappingProfile)
 {
     _context = DbContextService.GetDbContext();
 }
 public BISessionRepository(IMapper mappingProfile) : base(mappingProfile)
 {
     _context = DbContextService.GetDbContext();
 }
Beispiel #6
0
 public BlRepository(IMapper mappingProfile)
 {
     _context        = DbContextService.GetDbContext();
     _mappingProfile = mappingProfile;
 }