Beispiel #1
0
        public static AccountsProfile.Account GetSocialAccount(string name = null)
        {
            var o = new AccountsProfile.Account {
                Username = GetUserName(name), Password = GetPassword(), Url = SOCIAL_ACCOUNTS.RandomElement()
            };

            return(o);
        }
Beispiel #2
0
        public static AccountsProfile.Account GetAccount(string name = null)
        {
            var o = new AccountsProfile.Account {
                Username = GetUserName(name), Password = GetPassword(), Url = GetHttpUrl()
            };

            return(o);
        }