public int Save(Models.Transaction.TransactionParamter transaction)
        {
            int output;

            try
            {
                output = _transactionDataAccess.Save(transaction);
            }
            catch (Exception ex)
            {
                _logger.Error("TransactionServices ErrorTag: " + ErrorTagProvider.ErrorTagDatabase + " -- " + ex.Message, ex);
                throw new Exception(string.Format(DatabaseMessage.DatabaseException, ErrorTagProvider.ErrorTagDatabase));
            }
            return(output);
        }