Пример #1
0
        public DataTable UpdateLockUnlock(int Ind, int UserInd, int UserId, string Remark)
        {
            PL_Login pl = new PL_Login();

            pl.Ind     = Ind;
            pl.UserInd = UserInd;
            pl.UserId  = UserId;
            pl.Remark  = Remark;
            DataTable dt = new DataTable();

            dt = objdllogin.UpdateLockUnlock(pl);
            return(dt);
        }