public void BuildClick(string model, string cmd, WebMeta send) { var click = new UMC.Web.WebMeta().Put("model", model).Put("cmd", cmd); if (send != null && send.Count > 0) { click.Put("send", send);; } _data["click"] = click; }
public void BuildClick(string model, string cmd, string send) { var click = new UMC.Web.WebMeta().Put("model", model).Put("cmd", cmd); if (String.IsNullOrEmpty(send) == false) { click.Put("send", send);; } _data["click"] = click; }
public Editer(int section, int row) { webMeta.Put("section", section).Put("row", row); }