/// <summary>
        /// Creator: Jaeho Kim
        /// Created: 03/19/2020
        /// Approver: Rasha Mohammed
        ///
        /// Implementation of AddTransaction method.
        /// Adds the transaction.
        /// </summary>
        /// <remarks>
        /// Updater: NA
        /// Updated: NA
        /// Update: NA
        /// </remarks>
        public bool AddTransaction(Transaction transaction)
        {
            bool result = false;

            try
            {
                result = (_transactionAccessor.InsertTransaction(transaction) > 0);
            }
            catch (Exception ex)
            {
                throw new ApplicationException("Could Not Add Transaction.", ex);
            }
            return(result);
        }