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); }
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); }
public bool Destroy(object Id) { return(DynamicFieldUserCustomSize.Destroy(Id) == 1); }