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

            FR_L3CO_GCOHwPbH_1604_Array functionReturn = new FR_L3CO_GCOHwPbH_1604_Array();

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

                functionReturn = Execute(Connection, Transaction, Parameter, 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_CustomerOrderHeaders_with_Positions_by_HeaderIDs", ex);
            }
            return(functionReturn);
        }
        protected static FR_L3CO_GCOHwPbH_1604_Array Execute(DbConnection Connection, DbTransaction Transaction, P_L3CO_GCOHwPbH_1604 Parameter, CSV2Core.SessionSecurity.SessionSecurityTicket securityTicket = null)
        {
            var returnStatus = new FR_L3CO_GCOHwPbH_1604_Array();

            DbCommand command = Connection.CreateCommand();

            command.Connection  = Connection;
            command.Transaction = Transaction;
            var commandLocation = "CL3_CustomerOrder.Atomic.Retrieval.SQL.cls_Get_CustomerOrderHeaders_with_Positions_by_HeaderIDs.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;

            command.CommandText = System.Text.RegularExpressions.Regex.Replace(command.CommandText, "=[ \t]*@CustomerOrderHeaderIDs", " IN $$CustomerOrderHeaderIDs$$");
            CSV2Core_MySQL.Support.DBSQLSupport.AppendINStatement(command, "$CustomerOrderHeaderIDs$", Parameter.CustomerOrderHeaderIDs);


            List <L3CO_GCOHwPbH_1604_raw> results = new List <L3CO_GCOHwPbH_1604_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[] { "ORD_CUO_CustomerOrder_HeaderID", "CustomerOrder_Number", "CustomerOrder_Date", "TotalValue_BeforeTax", "IsCustomerOrderFinalized", "OrderCreatedBy", "OrderedByCompanyInfoId", "OrderedByCompanyName", "OrderedByEmail", "Status_Code", "Status_Name_DictID", "GlobalPropertyMatchingID", "ConfirmedBy_DisplayName", "ORD_CUO_CustomerOrder_PositionID", "CMN_PRO_Product_RefID", "Product_Name_DictID", "Product_Number", "Position_ValueTotal", "Position_ValuePerUnit", "Position_Quantity", "ApplicableSalesTax_RefID", "TaxRate", "TaxName_DictID", "EconomicRegion_RefID" });
                while (reader.Read())
                {
                    L3CO_GCOHwPbH_1604_raw resultItem = new L3CO_GCOHwPbH_1604_raw();
                    //0:Parameter ORD_CUO_CustomerOrder_HeaderID of type Guid
                    resultItem.ORD_CUO_CustomerOrder_HeaderID = reader.GetGuid(0);
                    //1:Parameter CustomerOrder_Number of type String
                    resultItem.CustomerOrder_Number = reader.GetString(1);
                    //2:Parameter CustomerOrder_Date of type DateTime
                    resultItem.CustomerOrder_Date = reader.GetDate(2);
                    //3:Parameter TotalValue_BeforeTax of type decimal
                    resultItem.TotalValue_BeforeTax = reader.GetDecimal(3);
                    //4:Parameter IsCustomerOrderFinalized of type bool
                    resultItem.IsCustomerOrderFinalized = reader.GetBoolean(4);
                    //5:Parameter OrderCreatedBy of type String
                    resultItem.OrderCreatedBy = reader.GetString(5);
                    //6:Parameter OrderedByCompanyInfoId of type Guid
                    resultItem.OrderedByCompanyInfoId = reader.GetGuid(6);
                    //7:Parameter OrderedByCompanyName of type String
                    resultItem.OrderedByCompanyName = reader.GetString(7);
                    //8:Parameter OrderedByEmail of type String
                    resultItem.OrderedByEmail = reader.GetString(8);
                    //9:Parameter Status_Code of type String
                    resultItem.Status_Code = reader.GetString(9);
                    //10:Parameter Status_Name of type Dict
                    resultItem.Status_Name             = reader.GetDictionary(10);
                    resultItem.Status_Name.SourceTable = "ord_cuo_customerorder_statuses";
                    loader.Append(resultItem.Status_Name);
                    //11:Parameter GlobalPropertyMatchingID of type string
                    resultItem.GlobalPropertyMatchingID = reader.GetString(11);
                    //12:Parameter ConfirmedBy_DisplayName of type String
                    resultItem.ConfirmedBy_DisplayName = reader.GetString(12);
                    //13:Parameter ORD_CUO_CustomerOrder_PositionID of type Guid
                    resultItem.ORD_CUO_CustomerOrder_PositionID = reader.GetGuid(13);
                    //14:Parameter CMN_PRO_Product_RefID of type Guid
                    resultItem.CMN_PRO_Product_RefID = reader.GetGuid(14);
                    //15:Parameter Product_Name of type Dict
                    resultItem.Product_Name             = reader.GetDictionary(15);
                    resultItem.Product_Name.SourceTable = "cmn_pro_products";
                    loader.Append(resultItem.Product_Name);
                    //16:Parameter Product_Number of type String
                    resultItem.Product_Number = reader.GetString(16);
                    //17:Parameter Position_ValueTotal of type decimal
                    resultItem.Position_ValueTotal = reader.GetDecimal(17);
                    //18:Parameter Position_ValuePerUnit of type decimal
                    resultItem.Position_ValuePerUnit = reader.GetDecimal(18);
                    //19:Parameter Position_Quantity of type double
                    resultItem.Position_Quantity = reader.GetDouble(19);
                    //20:Parameter ApplicableSalesTax_RefID of type Guid
                    resultItem.ApplicableSalesTax_RefID = reader.GetGuid(20);
                    //21:Parameter TaxRate of type double
                    resultItem.TaxRate = reader.GetDouble(21);
                    //22:Parameter TaxName of type Dict
                    resultItem.TaxName             = reader.GetDictionary(22);
                    resultItem.TaxName.SourceTable = "acc_tax_taxes";
                    loader.Append(resultItem.TaxName);
                    //23:Parameter EconomicRegion_RefID of type Guid
                    resultItem.EconomicRegion_RefID = reader.GetGuid(23);

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

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