/// <summary> /// GetAccountById business method. /// </summary> /// <param name="AccountID">A AccountID value.</param> /// <returns>Returns a Account object.</returns> public Account GetAccountById(long AccountID) { Account result = default(Account); // Data access component declarations. var AccountDAC = new AccountDAL(); // Step 1 - Calling SelectById on AccountDAC. result = AccountDAC.SelectById(AccountID); return result; }