Exemplo n.º 1
0
 public MoviesRepository(ApplicationDbContext context,
                         IAuthenticationStateService authenticationStateService,
                         IFileStorageService fileStorageService,
                         IMapper mapper)
 {
     this.context = context;
     this.authenticationStateService = authenticationStateService;
     this.fileStorageService         = fileStorageService;
     this.mapper = mapper;
 }
Exemplo n.º 2
0
 public RatingRepository(ApplicationDbContext context, IAuthenticationStateService authenticationStateService)
 {
     this.context = context;
     this.authenticationStateService = authenticationStateService;
 }