Exemplo n.º 1
0
        public int LoginBySwipe(string swipe, string storeId)
        {
            DataTable emp = getGui.GetEmpSwipe(swipe, storeId);

            if (swipe == "")
            {
                return(1);
            }
            if (emp.Rows.Count > 0)
            {
                StaticClass.isAdmin    = false;
                StaticClass.cashierId  = emp.Rows[0]["Cashier_ID"].ToString();
                StaticClass.thongTinNV = emp.Rows[0];
                return(0);
            }
            return(1);
        }