Example #1
0
 private object[] OnEndRetrivePMOListParamas(System.IAsyncResult result)
 {
     MvcAPI.Connector.ServiceReference1.PMOContract retVal = this.EndRetrivePMOListParamas(result);
     return(new object[] {
         retVal
     });
 }
Example #2
0
 public JsonResult RetrivePMOListParamas(string param)
 {
     MvcAPI.Connector.ServiceReference1.PMOContract pMOContract = null;
     try
     {
         pMOContract = repository.RetrivePMOListParamas(param);
     }
     catch (Exception ex)
     {
         return(Json(new { Result = "ERROR", Message = ex.Message }));
     }
     return(Json(pMOContract.PMOFileList, JsonRequestBehavior.AllowGet));
 }