/// <summary>
        /// Creator: Jaeho Kim
        /// Created: 04/04/2020
        /// Approver: Rasha Mohammed
        ///
        /// Implementation of AddTransactionLineProducts method.
        /// Adds the transaction.
        /// </summary>
        /// <remarks>
        /// Updater: NA
        /// Updated: NA
        /// Update: NA
        /// </remarks>
        /// <returns>bool</returns>
        public bool AddTransactionLineProducts(TransactionLineProducts transactionLineProducts)
        {
            bool result = false;

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