BetterMembership.IntegrationTests.Helpers.TestUser.TestUser C# (CSharp) Метод

TestUser() публичный Метод

public TestUser ( string userName, string email, string password, object>.Dictionary profile ) : System.Collections.Generic
userName string
email string
password string
profile object>.Dictionary
Результат System.Collections.Generic
        public TestUser(string userName, string email, string password, Dictionary<string, object> profile)
        {
            this.profile = profile;
            this.UserName = userName;
            this.Email = email;
            this.Password = password;
        }
TestUser