///<summary>
        /// Method Invocation of wrapper classes
        ///<summary>
        protected static FR_L2ER_GERwCA_1017_Array Invoke(DbConnection Connection, DbTransaction Transaction, string ConnectionString, CSV2Core.SessionSecurity.SessionSecurityTicket securityTicket = null)
        {
            bool cleanupConnection  = Connection == null;
            bool cleanupTransaction = Transaction == null;

            FR_L2ER_GERwCA_1017_Array functionReturn = new FR_L2ER_GERwCA_1017_Array();

            try
            {
                if (cleanupConnection == true)
                {
                    Connection = CSV2Core_MySQL.Support.DBSQLSupport.CreateConnection(ConnectionString);
                    Connection.Open();
                }
                if (cleanupTransaction == true)
                {
                    Transaction = Connection.BeginTransaction();
                }

                functionReturn = Execute(Connection, Transaction, securityTicket);

                #region Cleanup Connection/Transaction
                //Commit the transaction
                if (cleanupTransaction == true)
                {
                    Transaction.Commit();
                }
                //Close the connection
                if (cleanupConnection == true)
                {
                    Connection.Close();
                }
                #endregion
            }
            catch (Exception ex)
            {
                try
                {
                    if (cleanupTransaction == true && Transaction != null)
                    {
                        Transaction.Rollback();
                    }
                }
                catch { }

                try
                {
                    if (cleanupConnection == true && Connection != null)
                    {
                        Connection.Close();
                    }
                }
                catch { }

                throw new Exception("Exception occured in method cls_Get_EconomicRegion_with_Country_Assignments", ex);
            }
            return(functionReturn);
        }
        protected static FR_L2ER_GERwCA_1017_Array Execute(DbConnection Connection, DbTransaction Transaction, CSV2Core.SessionSecurity.SessionSecurityTicket securityTicket = null)
        {
            var returnStatus = new FR_L2ER_GERwCA_1017_Array();

            DbCommand command = Connection.CreateCommand();

            command.Connection  = Connection;
            command.Transaction = Transaction;
            var commandLocation = "CL3_EconomicRegion.Atomic.Retrieval.SQL.cls_Get_EconomicRegion_with_Country_Assignments.sql";

            command.CommandText = new System.IO.StreamReader(System.Reflection.Assembly.GetExecutingAssembly().GetManifestResourceStream(commandLocation)).ReadToEnd();
            CSV2Core_MySQL.Support.DBSQLSupport.SetParameter(command, "ticket", securityTicket);
            command.CommandTimeout = QueryTimeout;

            List <L2ER_GERwCA_1017_raw> results = new List <L2ER_GERwCA_1017_raw>();
            var loader = new CSV2Core_MySQL.Dictionaries.MultiTable.Loader.DictionaryLoader(Connection, Transaction);
            var reader = new CSV2Core_MySQL.Support.DBSQLReader(command.ExecuteReader());

            try
            {
                reader.SetOrdinals(new string[] { "CMN_EconomicRegionID", "ParentEconomicRegion_RefID", "EconomicRegion_Name_DictID", "EconomicRegion_Description_DictID", "IsEconomicRegionCountry", "AssignmentID", "CMN_CountryID", "Country_Name_DictID", "Country_ISOCode_Alpha2", "IsActive", "IsDefault" });
                while (reader.Read())
                {
                    L2ER_GERwCA_1017_raw resultItem = new L2ER_GERwCA_1017_raw();
                    //0:Parameter CMN_EconomicRegionID of type Guid
                    resultItem.CMN_EconomicRegionID = reader.GetGuid(0);
                    //1:Parameter ParentEconomicRegion_RefID of type Guid
                    resultItem.ParentEconomicRegion_RefID = reader.GetGuid(1);
                    //2:Parameter EconomicRegion_Name of type Dict
                    resultItem.EconomicRegion_Name             = reader.GetDictionary(2);
                    resultItem.EconomicRegion_Name.SourceTable = "cmn_economicregion";
                    loader.Append(resultItem.EconomicRegion_Name);
                    //3:Parameter EconomicRegion_Description of type Dict
                    resultItem.EconomicRegion_Description             = reader.GetDictionary(3);
                    resultItem.EconomicRegion_Description.SourceTable = "cmn_economicregion";
                    loader.Append(resultItem.EconomicRegion_Description);
                    //4:Parameter IsEconomicRegionCountry of type bool
                    resultItem.IsEconomicRegionCountry = reader.GetBoolean(4);
                    //5:Parameter AssignmentID of type Guid
                    resultItem.AssignmentID = reader.GetGuid(5);
                    //6:Parameter CMN_CountryID of type Guid
                    resultItem.CMN_CountryID = reader.GetGuid(6);
                    //7:Parameter Country_Name of type Dict
                    resultItem.Country_Name             = reader.GetDictionary(7);
                    resultItem.Country_Name.SourceTable = "cmn_countries";
                    loader.Append(resultItem.Country_Name);
                    //8:Parameter Country_ISOCode_Alpha2 of type string
                    resultItem.Country_ISOCode_Alpha2 = reader.GetString(8);
                    //9:Parameter IsActive of type bool
                    resultItem.IsActive = reader.GetBoolean(9);
                    //10:Parameter IsDefault of type bool
                    resultItem.IsDefault = reader.GetBoolean(10);

                    results.Add(resultItem);
                }
            }
            catch (Exception ex)
            {
                reader.Close();
                throw new Exception("Exception occured durng data retrieval in method cls_Get_EconomicRegion_with_Country_Assignments", ex);
            }
            reader.Close();
            //Load all the dictionaries from the datatables
            loader.Load();

            returnStatus.Result = L2ER_GERwCA_1017_raw.Convert(results).ToArray();
            return(returnStatus);
        }