Lending.ReadModels.Relational.AuthenticatedUser.AuthenticatedUser C# (CSharp) Method

AuthenticatedUser() public method

public AuthenticatedUser ( System.Guid id, string userName, string email, string picture, IList authenticationProviders ) : System
id System.Guid
userName string
email string
picture string
authenticationProviders IList
return System
        public AuthenticatedUser(Guid id, string userName, string email, string picture, IList<AuthenticationProvider> authenticationProviders)
        {
            Id = id;
            UserName = userName;
            Email = email;
            AuthenticationProviders = authenticationProviders;
            Picture = picture;
        }

Same methods

AuthenticatedUser::AuthenticatedUser ( ) : System
AuthenticatedUser