public ActionResult Edit(PrintTemplateType obj) { base.Update<PrintTemplateType>(obj); return Json(new { IsSuccess = true }); }
public JsonResult Create(PrintTemplateType obj) { base.Save<PrintTemplateType>(obj); return Json(new { IsSuccess = true }); }