public JsonResult GetDictionaryObjectByID(int dictionaryID, int pkValue)
 {
     try
     {
         ResponseObjectPackage<Dictionary<int, object>> result = new FormActionLogic().GetDictionaryObjectByID(dictionaryID, pkValue);
         return Json(result);
     }
     catch (Exception ex)
     {
         return this.HandleException(ex);
     }
 }
 public JsonResult BuildForm(int formID)
 {
     try
     {
         ResponseObjectPackage<Form> result = new FormActionLogic().BuildForm(formID);
         return Json(result);
     }
     catch (Exception ex)
     {
         return this.HandleException(ex);
     }
 }