/// <summary>
        /// Creator: Jaeho Kim
        /// Created: 2020/04/23
        /// Approver: Robert Holmes
        ///
        /// This method calls the Select default transaction type method in the DataAccessLayer.
        /// </summary>
        /// <remarks>
        /// Updater: NA
        /// Updated: NA
        /// Update: NA
        /// </remarks>
        /// <returns>TransactionType</returns>
        public TransactionType RetrieveDefaultTransactionType()
        {
            try
            {
                return(_transactionAccessor.SelectDefaultTransactionType());
            }

            catch (Exception ex)
            {
                throw new ApplicationException("Transaction type Not Found", ex);
            }
        }