//----------------------------------------------------------------------------------- //----------------------- get Account Details using Account Number ------------------ public static Customer GetCustomerByAccountNumber(string accountNumber) { Customer customerObj = null; try { customerObj = CustomerDL.GetCustomerByAccountNumber(accountNumber); } catch (Exception ex) { Console.Out.WriteLine("Error : CustomerBL:GetCustomerByAccountNumber : " + ex.Message.ToString()); } return(customerObj); }