public UserService(UserManager <IdentityUser> userMgr,
                    SignInManager <IdentityUser> signInMgr,
                    IUsuarioperfilService serviceUsuarioPerfil,
                    IOptions <AppSettings> appSettings)
 {
     userManager          = userMgr;
     signInManager        = signInMgr;
     ServiceUsuarioPerfil = serviceUsuarioPerfil;
     _appSettings         = appSettings.Value;
 }
Example #2
0
 public UsuarioperfilController(IUsuarioperfilService service)
 {
     this.Service = service;
 }