public void SubmitForm(ConfigCategoryEntity configCategoryEntity, string keyValue) { if (!string.IsNullOrEmpty(keyValue)) { configCategoryEntity.Modify(keyValue); service.Update(configCategoryEntity); } else { configCategoryEntity.Create(); service.Insert(configCategoryEntity); } }
public ActionResult SubmitForm(ConfigCategoryEntity configCategoryEntity, string keyValue) { configCategoryApp.SubmitForm(configCategoryEntity, keyValue); return(Success("操作成功。")); }