/// <summary> /// Get other related data for view /// </summary> /// <param name="strProjectCode"></param> /// <returns></returns> public ActionResult CTS260_OtherRelateForView(string strProjectCode) { ObjectResultData res = new ObjectResultData(); IProjectHandler Projh = ServiceContainer.GetService <IProjectHandler>() as IProjectHandler; List <tbt_ProjectOtherRalatedCompany> lstOther = Projh.GetTbt_ProjectOtherRalatedCompanyForView(strProjectCode); string result = CommonUtil.ConvertToXml <tbt_ProjectOtherRalatedCompany>(lstOther, "contract\\CTS260_other", CommonUtil.GRID_EMPTY_TYPE.VIEW); return(Json(result)); }