コード例 #1
0
ファイル: PostTestData.aspx.cs プロジェクト: aj-hc/SZY
 protected void Unnamed_Click(object sender, EventArgs e)
 {
     string ip = i.Text.Trim();
     string un = u.Text.Trim();
     string pw = p.Text.Trim();
     string da = GetData();
     BLL.UnameAndPwd up = new BLL.UnameAndPwd(un, pw);
     BLL.Test test = new BLL.Test();
     r.InnerText = test.PostTestData(up, "临床检验数据", da);
 }
コード例 #2
0
        protected void Unnamed_Click(object sender, EventArgs e)
        {
            string ip = i.Text.Trim();
            string un = u.Text.Trim();
            string pw = p.Text.Trim();
            string da = GetData();

            BLL.UnameAndPwd up   = new BLL.UnameAndPwd(un, pw);
            BLL.Test        test = new BLL.Test();
            r.InnerText = test.PostTestData(up, "临床检验数据", da);
        }
コード例 #3
0
ファイル: Test.cs プロジェクト: yandehao1/NEWSZY
        public string PostTestData(BLL.UnameAndPwd up, string test_data_type, Dictionary <string, string> dataDicList)
        {
            string result = FreezerProUtility.Fp_BLL.TestData.ImportTestData(up.GetUp(), test_data_type, dataDicList);

            return(result);
        }