public ActionResult ChildrenField(int id) { int count = TaskBO.GetInstance().GetCount(id); ChildrenFieldUIModel model = new ChildrenFieldUIModel() { ID = id, Count = count, ClassName = "" }; return(View("ChildrenField", model)); }
public ActionResult UserroleChildrenField(int id) { int count = RoleBO.GetInstance().GetUserroleCount(id); ChildrenFieldUIModel model = new ChildrenFieldUIModel() { ID = id, Count = count, ClassName = "Userrole" }; return(View("ChildrenField", model)); }
public ActionResult FormdetailChildrenField(int id) { int count = FormBO.GetInstance().GetFormdetailCount(id); ChildrenFieldUIModel model = new ChildrenFieldUIModel() { ID = id, Count = count, ClassName = "Formdetail" }; return(View("ChildrenField", model)); }
public ActionResult ActivityChildrenField(int id) { int count = WorkflowBO.GetInstance().GetActivityCount(id); ChildrenFieldUIModel model = new ChildrenFieldUIModel() { ID = id, Count = count, ClassName = "Activity" }; return(View("ChildrenField", model)); }