Example #1
0
 public RepositorioVotos(ApplicationDbContext context,
                         UserManager <IdentityUser> userManager,
                         AuthenticationStateService authenticationStateService
                         )
 {
     this.context     = context;
     this.userManager = userManager;
     this.authenticationStateService = authenticationStateService;
 }
 public RepositorioPeliculas(ApplicationDbContext context,
                             IAlmacenadorDeArchivos almacenadorDeArchivos,
                             IMapper mapper,
                             UserManager <IdentityUser> userManager,
                             AuthenticationStateService authenticationStateService
                             )
 {
     this.context = context;
     this.almacenadorDeArchivos = almacenadorDeArchivos;
     this.mapper      = mapper;
     this.userManager = userManager;
     this.authenticationStateService = authenticationStateService;
 }