public ResponseVerifyAccountExists VerifyAccount(string identifier, string account_name) { RequestAccountExists request = new RequestAccountExists(identifier, account_name); ResponseVerifyAccountExists response = ResponseVerifyAccountExists.ResponseToAccountExists(request); return(response); }
public ResponseVerifyAccountExists AccountExistsQuestion(string identifier, string name) { RequestAccountExists acc = new RequestAccountExists(identifier, name); ResponseVerifyAccountExists ace = ResponseVerifyAccountExists.ResponseToAccountExists(acc); return(ace); }