Ejemplo n.º 1
0
        public void Update(int Id, string Uid, short?TxtW, short?TxtH, short?LblW, short?LblH, short?W, short?H)
        {
            DynamicFieldUserCustomSize item = new DynamicFieldUserCustomSize();

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

            item.Id = Id;

            item.Uid = Uid;

            item.TxtW = TxtW;

            item.TxtH = TxtH;

            item.LblW = LblW;

            item.LblH = LblH;

            item.W = W;

            item.H = H;

            item.Save(UserName);
        }
Ejemplo n.º 2
0
        public void Insert(int Id, string Uid, short?TxtW, short?TxtH, short?LblW, short?LblH, short?W, short?H)
        {
            DynamicFieldUserCustomSize item = new DynamicFieldUserCustomSize();

            item.Id = Id;

            item.Uid = Uid;

            item.TxtW = TxtW;

            item.TxtH = TxtH;

            item.LblW = LblW;

            item.LblH = LblH;

            item.W = W;

            item.H = H;


            item.Save(UserName);
        }
Ejemplo n.º 3
0
 public bool Destroy(object Id)
 {
     return(DynamicFieldUserCustomSize.Destroy(Id) == 1);
 }