コード例 #1
0
ファイル: Main.cs プロジェクト: EricBlack/web-automation
        public string GetAccountBy(string name)
        {
            string result = "";

            if (User.Current != null)
            {
                Account account = new Account();
                result = account.GetByJSON(name);
            }
            return result;
        }
コード例 #2
0
        public string GetAccount(string name)
        {
            string result = "";

            Account account = new Account();
            result = account.GetByJSON(name);

            return result;
        }