Example #1
0
        private void FormClientInfo(int pInput)
        {
            AdminViewHelper admViewHelper = new AdminViewHelper();
            string          txt8 = "", txt9 = "", txt11 = "", txt12 = "";

            label1.Text = "ID";
            label2.Text = "NAME";
            label3.Text = "EMAIL";
            label4.Text = "";
            label5.Text = "MONEY";
            label6.Text = "TOTAL ORDERS";

            admViewHelper.GetClientInfoFromRedis(pInput, ref txt8, ref txt9, ref txt11, ref txt12);

            label7.Text  = pInput.ToString();
            label8.Text  = txt8;
            label9.Text  = txt9;
            label10.Text = "";
            label11.Text = txt11;
            label12.Text = txt12;
        }