Ejemplo n.º 1
0
        public void Insert(int MaxSID)
        {
            var item = new TCommonPara();

            item.MaxSID = MaxSID;


            item.Save(UserName);
        }
Ejemplo n.º 2
0
        public void Update(int MaxSID)
        {
            var item = new TCommonPara();

            item.MarkOld();
            item.IsLoaded = true;

            item.MaxSID = MaxSID;

            item.Save(UserName);
        }