public MoviesRepository(ApplicationDbContext context,
                         IAuthenticationStateService authenticationStateService,
                         IFileStorageService fileStorageService,
                         IMapper mapper)
 {
     this.context = context;
     this.authenticationStateService = authenticationStateService;
     this.fileStorageService         = fileStorageService;
     this.mapper = mapper;
 }
 public RatingRepository(ApplicationDbContext context, IAuthenticationStateService authenticationStateService)
 {
     this.context = context;
     this.authenticationStateService = authenticationStateService;
 }