public IList <Area> GetAll() { IList <Area> areaObj = new List <Area>(); try { FinancialPlanner.Common.JSONSerialization jsonSerialization = new FinancialPlanner.Common.JSONSerialization(); string apiurl = Program.WebServiceUrl + "/" + string.Format(GET_All_API); RestAPIExecutor restApiExecutor = new RestAPIExecutor(); var restResult = restApiExecutor.Execute <IList <Area> >(apiurl, null, "GET"); if (jsonSerialization.IsValidJson(restResult.ToString())) { areaObj = jsonSerialization.DeserializeFromString <IList <Area> >(restResult.ToString()); } return(areaObj); } catch (Exception ex) { Logger.LogDebug(ex); return(null); } }
public ClientContact Get(int clientId) { ClientContact clientContactObj = new ClientContact(); try { FinancialPlanner.Common.JSONSerialization jsonSerialization = new FinancialPlanner.Common.JSONSerialization(); string apiurl = Program.WebServiceUrl + "/" + string.Format(GET_CLIENT_CONTACT_API, clientId); RestAPIExecutor restApiExecutor = new RestAPIExecutor(); var restResult = restApiExecutor.Execute <Client>(apiurl, null, "GET"); if (jsonSerialization.IsValidJson(restResult.ToString())) { clientContactObj = jsonSerialization.DeserializeFromString <ClientContact>(restResult.ToString()); } return(clientContactObj); } catch (Exception ex) { Logger.LogDebug(ex); return(null); } }
public CurrentStatusCalculation GetAllCurrestStatus(int plannerId) { try { FinancialPlanner.Common.JSONSerialization jsonSerialization = new FinancialPlanner.Common.JSONSerialization(); string apiurl = Program.WebServiceUrl + "/" + string.Format(GET_ALL_CURRENT_STATUS_API, plannerId); RestAPIExecutor restApiExecutor = new RestAPIExecutor(); var restResult = restApiExecutor.Execute <IList <CurrentStatusCalculation> >(apiurl, null, "GET"); if (jsonSerialization.IsValidJson(restResult.ToString())) { csCal = jsonSerialization.DeserializeFromString <CurrentStatusCalculation>(restResult.ToString()); } return(csCal); } catch (Exception ex) { StackTrace st = new StackTrace(); StackFrame sf = st.GetFrame(0); MethodBase currentMethodName = sf.GetMethod(); LogDebug(currentMethodName.Name, ex); return(null); } }
public IList <NonFinancialAsset> GetAll(int plannerId) { IList <NonFinancialAsset> nonFinancialAssetObj = new List <NonFinancialAsset>(); try { FinancialPlanner.Common.JSONSerialization jsonSerialization = new FinancialPlanner.Common.JSONSerialization(); string apiurl = Program.WebServiceUrl + "/" + string.Format(GET_ALL_NON_FINANCIAL_ASSET_API, plannerId); RestAPIExecutor restApiExecutor = new RestAPIExecutor(); var restResult = restApiExecutor.Execute <IList <NonFinancialAsset> >(apiurl, null, "GET"); if (jsonSerialization.IsValidJson(restResult.ToString())) { nonFinancialAssetObj = jsonSerialization.DeserializeFromString <IList <NonFinancialAsset> >(restResult.ToString()); } return(nonFinancialAssetObj); } catch (Exception ex) { StackTrace st = new StackTrace(); StackFrame sf = st.GetFrame(0); MethodBase currentMethodName = sf.GetMethod(); LogDebug(currentMethodName.Name, ex); return(null); } }
public IList <FamilyMember> Get(int clientId) { IList <FamilyMember> employmentListObj = new List <FamilyMember>(); try { FinancialPlanner.Common.JSONSerialization jsonSerialization = new FinancialPlanner.Common.JSONSerialization(); string apiurl = Program.WebServiceUrl + "/" + string.Format(GET_All_FAMAILYMEMBER_API, clientId); RestAPIExecutor restApiExecutor = new RestAPIExecutor(); var restResult = restApiExecutor.Execute <IList <FamilyMember> >(apiurl, null, "GET"); if (jsonSerialization.IsValidJson(restResult.ToString())) { employmentListObj = jsonSerialization.DeserializeFromString <IList <FamilyMember> >(restResult.ToString()); } return(employmentListObj); } catch (Exception ex) { Logger.LogDebug(ex); return(null); } }
private ClientSpouse getSpousePersonalInfo(int clientId) { ClientSpouse clientSpouseObj = new ClientSpouse(); try { FinancialPlanner.Common.JSONSerialization jsonSerialization = new FinancialPlanner.Common.JSONSerialization(); string apiurl = Program.WebServiceUrl + "/" + string.Format(GET_SPOUSE_PERSONAL_API, clientId); RestAPIExecutor restApiExecutor = new RestAPIExecutor(); var restResult = restApiExecutor.Execute <Client>(apiurl, null, "GET"); if (jsonSerialization.IsValidJson(restResult.ToString())) { clientSpouseObj = jsonSerialization.DeserializeFromString <ClientSpouse>(restResult.ToString()); } return(clientSpouseObj); } catch (Exception ex) { Logger.LogDebug(ex); return(null); } }
private void btnPersonalDetailSave_Click(object sender, EventArgs e) { RiskProfiledReturnMaster riskProfileMaster = new RiskProfiledReturnMaster(); riskProfileMaster = getRiskProfileData(); try { FinancialPlanner.Common.JSONSerialization jsonSerialization = new FinancialPlanner.Common.JSONSerialization(); string apiurl = string.Empty; if (riskProfileMaster.Id == 0) { apiurl = Program.WebServiceUrl + "/" + ADD_RISKPROFILE_RETURN; } else { apiurl = Program.WebServiceUrl + "/" + UPDATE_RISKPROFILE_RETURN; } RestAPIExecutor restApiExecutor = new RestAPIExecutor(); var restResult = restApiExecutor.Execute <RiskProfiledReturnMaster>(apiurl, riskProfileMaster, "POST"); MessageBox.Show("Record save successfully.", "Record Saved", MessageBoxButtons.OK, MessageBoxIcon.Information); } catch (Exception ex) { MessageBox.Show("Unable to save record.", "Error", MessageBoxButtons.OK, MessageBoxIcon.Error); Logger.LogDebug(ex); } }
internal Loan GetById(int id, int plannerId) { Loan loanObj = new Loan(); try { FinancialPlanner.Common.JSONSerialization jsonSerialization = new FinancialPlanner.Common.JSONSerialization(); string apiurl = Program.WebServiceUrl + "/" + string.Format(GET_ALL_BY_ID_API, id, plannerId); RestAPIExecutor restApiExecutor = new RestAPIExecutor(); var restResult = restApiExecutor.Execute <IList <Loan> >(apiurl, null, "GET"); if (jsonSerialization.IsValidJson(restResult.ToString())) { loanObj = jsonSerialization.DeserializeFromString <Loan>(restResult.ToString()); } return(loanObj); } catch (Exception ex) { StackTrace st = new StackTrace(); StackFrame sf = st.GetFrame(0); MethodBase currentMethodName = sf.GetMethod(); LogDebug(currentMethodName.Name, ex); return(null); } }
private Client getClientPersonalInfo(int clientId) { Client clientObj = new Client(); try { FinancialPlanner.Common.JSONSerialization jsonSerialization = new FinancialPlanner.Common.JSONSerialization(); string apiurl = Program.WebServiceUrl + "/" + string.Format(GET_CLIENT_PERSONAL_API, clientId); RestAPIExecutor restApiExecutor = new RestAPIExecutor(); var restResult = restApiExecutor.Execute <Client>(apiurl, null, "GET"); if (jsonSerialization.IsValidJson(restResult.ToString())) { clientObj = jsonSerialization.DeserializeFromString <Client>(restResult.ToString()); } else { MessageBox.Show(restResult.ToString(), "Error", MessageBoxButtons.OK, MessageBoxIcon.Information); } return(clientObj); } catch (Exception ex) { Logger.LogDebug(ex); return(clientObj); } }
public Employment Get(int id) { Employment employmentObj = new Employment(); try { FinancialPlanner.Common.JSONSerialization jsonSerialization = new FinancialPlanner.Common.JSONSerialization(); string apiurl = Program.WebServiceUrl + "/" + string.Format(GET_EMPLOYMENT_API, id); RestAPIExecutor restApiExecutor = new RestAPIExecutor(); var restResult = restApiExecutor.Execute <Employment>(apiurl, null, "GET"); if (jsonSerialization.IsValidJson(restResult.ToString())) { employmentObj = jsonSerialization.DeserializeFromString <Employment>(restResult.ToString()); } return(employmentObj); } catch (Exception ex) { Logger.LogDebug(ex); return(null); } }
internal IList <ClientCRMGroup> Get(int clientId) { IList <ClientCRMGroup> ClientCRMGroupObj = new List <ClientCRMGroup>(); try { FinancialPlanner.Common.JSONSerialization jsonSerialization = new FinancialPlanner.Common.JSONSerialization(); string apiurl = Program.WebServiceUrl + "/" + string.Format(GETALL_CLIENTFESTIVAL_API, clientId); RestAPIExecutor restApiExecutor = new RestAPIExecutor(); var restResult = restApiExecutor.Execute <IList <ClientCRMGroup> >(apiurl, null, "GET"); if (jsonSerialization.IsValidJson(restResult.ToString())) { ClientCRMGroupObj = jsonSerialization.DeserializeFromString <IList <ClientCRMGroup> >(restResult.ToString()); } return(ClientCRMGroupObj); } catch (Exception ex) { Logger.LogDebug(ex); return(null); } }
private void btnLogin_Click(object sender, EventArgs e) { try { string loginUrl = Program.WebServiceUrl + "/" + AUTHENTICATIONAPI; FinancialPlanner.Common.JSONSerialization jsonSerialization = new FinancialPlanner.Common.JSONSerialization(); User user = getUserObjectFromUI(); RestAPIExecutor restApiExecutor = new RestAPIExecutor(); var restResult = restApiExecutor.Execute <User>(loginUrl, user, "POST"); if (jsonSerialization.IsValidJson(restResult.ToString())) { actionOnValidAuthentication(restResult.ToString()); } else { MessageBox.Show(restResult.ToString(), "Login fail", MessageBoxButtons.OK, MessageBoxIcon.Information); } } catch (Exception ex) { MessageBox.Show("Invalid user or credential.", "Login fail", MessageBoxButtons.OK, MessageBoxIcon.Information); Logger.LogDebug(ex); } //string DATA = jsonSerialization.SerializeToString<User>(user); //WebClient client = new WebClient(); //client.Headers["Content-type"] = "application/json"; //client.Encoding = Encoding.UTF8; //string json = client.UploadString(loginUrl,"POST", DATA); //if (json != null) //{ // Result<User> resultObject = jsonSerialization.DeserializeFromString<Result<User>>(json); // if (resultObject.IsSuccess && resultObject.Value != null) // { // Program.CurrentUser = resultObject.Value; // Main frmclientMain = new Main(); // this.Visible = false; // frmclientMain.ShowDialog(); // this.Close(); // } // else // MessageBox.Show("Invalid user or credential.", "Login fail", MessageBoxButtons.OK, MessageBoxIcon.Information); //} }
private void loadProspectCustomerData() { try { FinancialPlanner.Common.JSONSerialization jsonSerialization = new FinancialPlanner.Common.JSONSerialization(); string apiurl = Program.WebServiceUrl + "/" + PROSPECT_CLIENTS_GETALL; RestAPIExecutor restApiExecutor = new RestAPIExecutor(); var restResult = restApiExecutor.Execute <List <ProspectClient> >(apiurl, null, "GET"); if (jsonSerialization.IsValidJson(restResult.ToString())) { var prospClientCollection = jsonSerialization.DeserializeFromString <List <ProspectClient> >(restResult.ToString()); _dtProspClients = ListtoDataTable.ToDataTable(prospClientCollection); fillTreeviewData(_dtProspClients); } else { MessageBox.Show(restResult.ToString(), "Error", MessageBoxButtons.OK, MessageBoxIcon.Information); } } catch (Exception ex) { Logger.LogDebug(ex); } //HttpWebRequest request = (HttpWebRequest)HttpWebRequest.Create(apiurl); //request.Method = "GET"; //String prospClientResultJosn = String.Empty; //using (HttpWebResponse response = (HttpWebResponse)request.GetResponse()) //{ // Stream dataStream = response.GetResponseStream(); // StreamReader reader = new StreamReader(dataStream); // prospClientResultJosn = reader.ReadToEnd(); // reader.Close(); // dataStream.Close(); //} //var prospClientCollection = jsonSerialization.DeserializeFromString<Result<List<ProspectClient>>>(prospClientResultJosn); //if (prospClientCollection.Value != null) //{ // _dtProspClients = ListtoDataTable.ToDataTable(prospClientCollection.Value); // //dataGridProspClients.DataSource = _dtProspClients; // fillTreeviewData(_dtProspClients); // //gridDisplaySetting(); //} }
internal DataTable GetMFTransactionsInfo(int plannerId) { IList <MFTransactions> MFTransactionsObj = new List <MFTransactions>(); try { FinancialPlanner.Common.JSONSerialization jsonSerialization = new FinancialPlanner.Common.JSONSerialization(); string apiurl = Program.WebServiceUrl + "/" + string.Format(GET_ALL, plannerId); RestAPIExecutor restApiExecutor = new RestAPIExecutor(); var restResult = restApiExecutor.Execute <IList <MFTransactions> >(apiurl, null, "GET"); if (jsonSerialization.IsValidJson(restResult.ToString())) { MFTransactionsObj = jsonSerialization.DeserializeFromString <IList <MFTransactions> >(restResult.ToString()); } if (MFTransactionsObj != null) { if (MFTransactionsObj.Count > 0) { dtMFTrans = ListtoDataTable.ToDataTable(MFTransactionsObj.ToList()); } else { return(defaultTableStructure()); } } return(dtMFTrans); } catch (System.Net.WebException webException) { if (webException.Message.Equals("The remote server returned an error: (401) Unauthorized.")) { MessageBox.Show("You session has been expired. Please Login again.", "Session Expired", MessageBoxButtons.OK, MessageBoxIcon.Warning); } return(null); } catch (Exception ex) { StackTrace st = new StackTrace(); StackFrame sf = st.GetFrame(0); MethodBase currentMethodName = sf.GetMethod(); LogDebug(currentMethodName.Name, ex); return(null); } }
public string PostList(List <Test1> list) { try { RestAPIExecutor defaultAPIExecutor = new RestAPIExecutor("http://localhost:19479/"); // 调用WebApi获取拥有权限菜单和功能列表数据 var request = new RestRequest("api/UserManage/UpdateUserPwd", Method.POST); request.AddParameter("list", list); var response = defaultAPIExecutor.Execute(request); return("{\"Message\":1,\"ReturnState\":True}"); } catch (Exception err) { return("{\"Message\":\"错误\",\"ReturnState\":false}"); } }
private void removeRecord(TreeNode selectedNode) { try { FinancialPlanner.Common.JSONSerialization jsonSerialization = new FinancialPlanner.Common.JSONSerialization(); RiskProfiledReturnMaster riskProfileMaster = convertSelectedRowDataToRiskProfileMastser(); string apiurl = Program.WebServiceUrl + "/" + DELETE_RISKPROFILE; RestAPIExecutor restApiExecutor = new RestAPIExecutor(); var restResult = restApiExecutor.Execute <RiskProfiledReturnMaster>(apiurl, riskProfileMaster, "POST"); } catch (Exception ex) { StackTrace st = new StackTrace(); StackFrame sf = st.GetFrame(0); MethodBase currentMethodName = sf.GetMethod(); LogDebug(currentMethodName.Name, ex); } }
private void loadRiskProfileData() { FinancialPlanner.Common.JSONSerialization jsonSerialization = new FinancialPlanner.Common.JSONSerialization(); string apiurl = Program.WebServiceUrl + "/" + RISKPROFILE_GETALL; RestAPIExecutor restApiExecutor = new RestAPIExecutor(); var restResult = restApiExecutor.Execute <List <RiskProfiledReturnMaster> >(apiurl, null, "GET"); if (jsonSerialization.IsValidJson(restResult.ToString())) { _riskProfileMasters = jsonSerialization.DeserializeFromString <List <RiskProfiledReturnMaster> >(restResult.ToString()); } else { MessageBox.Show(restResult.ToString(), "Error", MessageBoxButtons.OK, MessageBoxIcon.Information); } }
public IList <FinancialPlanner.Common.Model.PlanOptions.CurrentStatusToGoal> GetCurrentStatusToGoal(int optionID) { IList <FinancialPlanner.Common.Model.PlanOptions.CurrentStatusToGoal> currentStatusToGoals = new List <FinancialPlanner.Common.Model.PlanOptions.CurrentStatusToGoal>(); try { FinancialPlanner.Common.JSONSerialization jsonSerialization = new FinancialPlanner.Common.JSONSerialization(); string apiurl = Program.WebServiceUrl + "/" + string.Format(GET_CURRENT_STATUS_TO_GOAL_BYID, optionID); RestAPIExecutor restApiExecutor = new RestAPIExecutor(); var restResult = restApiExecutor.Execute <IList <Shares> >(apiurl, null, "GET"); if (jsonSerialization.IsValidJson(restResult.ToString())) { currentStatusToGoals = jsonSerialization.DeserializeFromString <IList <FinancialPlanner.Common.Model.PlanOptions.CurrentStatusToGoal> >(restResult.ToString()); } if (currentStatusToGoals != null) { return(currentStatusToGoals); } else { return(null); } } catch (System.Net.WebException webException) { if (webException.Message.Equals("The remote server returned an error: (401) Unauthorized.")) { MessageBox.Show("You session has been expired. Please Login again.", "Session Expired", MessageBoxButtons.OK, MessageBoxIcon.Warning); } return(null); } catch (Exception ex) { StackTrace st = new StackTrace(); StackFrame sf = st.GetFrame(0); MethodBase currentMethodName = sf.GetMethod(); LogDebug(currentMethodName.Name, ex); return(null); } }
internal bool Update(Shares Shares) { try { FinancialPlanner.Common.JSONSerialization jsonSerialization = new FinancialPlanner.Common.JSONSerialization(); string apiurl = Program.WebServiceUrl + "/" + UPDATE_SHARES_API; RestAPIExecutor restApiExecutor = new RestAPIExecutor(); var restResult = restApiExecutor.Execute <Shares>(apiurl, Shares, "POST"); return(true); } catch (Exception ex) { StackTrace st = new StackTrace(); StackFrame sf = st.GetFrame(0); MethodBase currentMethodName = sf.GetMethod(); LogDebug(currentMethodName.Name, ex); return(false); } }
internal bool Delete(RecommendedSchemes recommendedSchemes) { try { FinancialPlanner.Common.JSONSerialization jsonSerialization = new FinancialPlanner.Common.JSONSerialization(); string apiurl = Program.WebServiceUrl + "/" + DELETE_RECOMMENDEDSCHEME; RestAPIExecutor restApiExecutor = new RestAPIExecutor(); var restResult = restApiExecutor.Execute <RecommendedSchemes>(apiurl, recommendedSchemes, "POST"); return(true); } catch (Exception ex) { StackTrace st = new StackTrace(); StackFrame sf = st.GetFrame(0); MethodBase currentMethodName = sf.GetMethod(); LogDebug(currentMethodName.Name, ex); return(false); } }
public bool Update(Employment employment) { try { FinancialPlanner.Common.JSONSerialization jsonSerialization = new FinancialPlanner.Common.JSONSerialization(); string apiurl = Program.WebServiceUrl + "/" + UPDATE_EMPLOYMENT_API; RestAPIExecutor restApiExecutor = new RestAPIExecutor(); var restResult = restApiExecutor.Execute <Employment>(apiurl, employment, "POST"); return(true); } catch (Exception ex) { Logger.LogDebug(ex); return(false); } }
public bool Delete(PlanOption planOption) { try { FinancialPlanner.Common.JSONSerialization jsonSerialization = new FinancialPlanner.Common.JSONSerialization(); string apiurl = Program.WebServiceUrl + "/" + DELETE_PLANOPTION_API; RestAPIExecutor restApiExecutor = new RestAPIExecutor(); var restResult = restApiExecutor.Execute <PlanOption>(apiurl, planOption, "POST"); return(true); } catch (Exception ex) { StackTrace st = new StackTrace(); StackFrame sf = st.GetFrame(0); MethodBase currentMethodName = sf.GetMethod(); LogDebug(currentMethodName.Name, ex); return(false); } }
internal bool Delete(InvestmentSegment invSegment) { try { FinancialPlanner.Common.JSONSerialization jsonSerialization = new FinancialPlanner.Common.JSONSerialization(); string apiurl = Program.WebServiceUrl + "/" + DELETE_InvestmentSegment_API; RestAPIExecutor restApiExecutor = new RestAPIExecutor(); var restResult = restApiExecutor.Execute <InvestmentSegment>(apiurl, invSegment, "POST"); return(true); } catch (Exception ex) { StackTrace st = new StackTrace(); StackFrame sf = st.GetFrame(0); MethodBase currentMethodName = sf.GetMethod(); LogDebug(currentMethodName.Name, ex); return(false); } }
private bool uploadfile(Document doc) { try { FinancialPlanner.Common.JSONSerialization jsonSerialization = new FinancialPlanner.Common.JSONSerialization(); string apiurl = Program.WebServiceUrl + "/" + ADD_BankAccount_API; RestAPIExecutor restApiExecutor = new RestAPIExecutor(); var restResult = restApiExecutor.Execute <Document>(apiurl, doc, "POST"); return(true); } catch (Exception ex) { StackTrace st = new StackTrace(); StackFrame sf = st.GetFrame(0); MethodBase currentMethodName = sf.GetMethod(); LogDebug(currentMethodName.Name, ex); return(false); } }
public void Delete(NonFinancialAsset nonFinancialAsset) { try { FinancialPlanner.Common.JSONSerialization jsonSerialization = new FinancialPlanner.Common.JSONSerialization(); string apiurl = Program.WebServiceUrl + "/" + DELETE_NON_FINANCIAL_API; RestAPIExecutor restApiExecutor = new RestAPIExecutor(); var restResult = restApiExecutor.Execute <NonFinancialAsset>(apiurl, nonFinancialAsset, "POST"); MessageBox.Show("Record deleted successfully.", "Delete", MessageBoxButtons.OK, MessageBoxIcon.Information); } catch (Exception ex) { StackTrace st = new StackTrace(); StackFrame sf = st.GetFrame(0); MethodBase currentMethodName = sf.GetMethod(); LogDebug(currentMethodName.Name, ex); MessageBox.Show("Unable to delete record.", "Error", MessageBoxButtons.OK, MessageBoxIcon.Warning); } }
public bool Add(NonFinancialAsset nonFinancialAsset) { try { FinancialPlanner.Common.JSONSerialization jsonSerialization = new FinancialPlanner.Common.JSONSerialization(); string apiurl = Program.WebServiceUrl + "/" + ADD_NON_FINANCIAL_API; RestAPIExecutor restApiExecutor = new RestAPIExecutor(); var restResult = restApiExecutor.Execute <NonFinancialAsset>(apiurl, nonFinancialAsset, "POST"); return(true); } catch (Exception ex) { StackTrace st = new StackTrace(); StackFrame sf = st.GetFrame(0); MethodBase currentMethodName = sf.GetMethod(); LogDebug(currentMethodName.Name, ex); return(false); } }
internal bool Add(MutualFund mutualFund) { try { FinancialPlanner.Common.JSONSerialization jsonSerialization = new FinancialPlanner.Common.JSONSerialization(); string apiurl = Program.WebServiceUrl + "/" + ADD_MUTUALFUND_API; RestAPIExecutor restApiExecutor = new RestAPIExecutor(); var restResult = restApiExecutor.Execute <MutualFund>(apiurl, mutualFund, "POST"); return(true); } catch (Exception ex) { StackTrace st = new StackTrace(); StackFrame sf = st.GetFrame(0); MethodBase currentMethodName = sf.GetMethod(); LogDebug(currentMethodName.Name, ex); return(false); } }
private bool updateClientPersonalInfo(Client client) { try { FinancialPlanner.Common.JSONSerialization jsonSerialization = new FinancialPlanner.Common.JSONSerialization(); string apiurl = Program.WebServiceUrl + "/" + UPDATE_CLIENTPERSONAL_INFO_API; RestAPIExecutor restApiExecutor = new RestAPIExecutor(); var restResult = restApiExecutor.Execute <Client>(apiurl, client, "POST"); return(true); } catch (Exception ex) { Logger.LogDebug(ex); return(false); } }
internal bool Add(LifeInsurance lifeInsurance) { try { FinancialPlanner.Common.JSONSerialization jsonSerialization = new FinancialPlanner.Common.JSONSerialization(); string apiurl = Program.WebServiceUrl + "/" + ADD_LIFEINSURANCE_API; RestAPIExecutor restApiExecutor = new RestAPIExecutor(); var restResult = restApiExecutor.Execute <LifeInsurance>(apiurl, lifeInsurance, "POST"); return(true); } catch (Exception ex) { StackTrace st = new StackTrace(); StackFrame sf = st.GetFrame(0); MethodBase currentMethodName = sf.GetMethod(); LogDebug(currentMethodName.Name, ex); return(false); } }
public bool Update(ClientContact clientContact) { try { FinancialPlanner.Common.JSONSerialization jsonSerialization = new FinancialPlanner.Common.JSONSerialization(); string apiurl = Program.WebServiceUrl + "/" + UPDATE_CONTACT_API; RestAPIExecutor restApiExecutor = new RestAPIExecutor(); var restResult = restApiExecutor.Execute <ClientContact>(apiurl, clientContact, "POST"); return(true); } catch (Exception ex) { Logger.LogDebug(ex); return(false); } }