示例#1
0
        public void Insert(string UserName, int ControlId)
        {
            LUserFormControl item = new LUserFormControl();

            item.UserName = UserName;

            item.ControlId = ControlId;


            item.Save(UserName);
        }
示例#2
0
        public void Update(string UserName, int ControlId)
        {
            LUserFormControl item = new LUserFormControl();

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

            item.UserName = UserName;

            item.ControlId = ControlId;

            item.Save(UserName);
        }