public static string GetReturnBhDischarge(ReturnAccount returnAccObj) { String discharge = ""; if (returnAccObj != null && returnAccObj.ToString() != "") { discharge = returnAccObj.acctBhDischarge; } return(discharge); }
public static string GetReturnBhCode(ReturnAccount returnAccObj) { String bhCode = ""; if (returnAccObj != null && returnAccObj.ToString() != "") { bhCode = returnAccObj.acctBhCode; if (bhCode == null || bhCode.ToString() == "") { bhCode = ""; } } return(bhCode); }