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

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

            DbCommand command = Connection.CreateCommand();

            command.Connection  = Connection;
            command.Transaction = Transaction;
            var commandLocation = "CL5_Zugseil_Product.Atomic.Retrieval.SQL.cls_Get_Products_and_ProductVariant_for_ProductIDs_and_Tenant.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]*@ProductIDs", " IN $$ProductIDs$$");
            CSV2Core_MySQL.Support.DBSQLSupport.AppendINStatement(command, "$ProductIDs$", Parameter.ProductIDs);


            List <L5PR_GPaPVfPaT_1602_raw> results = new List <L5PR_GPaPVfPaT_1602_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_PRO_ProductID", "Product_Name_DictID", "Product_Description_DictID", "Product_Number", "Product_DocumentationStructure_RefID", "CMN_PRO_Product_VariantID", "IsStandardProductVariant", "ProductVariantITL", "IsImportedFromExternalCatalog", "IsProductAvailableForOrdering", "IsObsolete", "VariantName_DictID" });
                while (reader.Read())
                {
                    L5PR_GPaPVfPaT_1602_raw resultItem = new L5PR_GPaPVfPaT_1602_raw();
                    //0:Parameter CMN_PRO_ProductID of type Guid
                    resultItem.CMN_PRO_ProductID = reader.GetGuid(0);
                    //1:Parameter Product_Name of type Dict
                    resultItem.Product_Name             = reader.GetDictionary(1);
                    resultItem.Product_Name.SourceTable = "cmn_pro_products";
                    loader.Append(resultItem.Product_Name);
                    //2:Parameter Product_Description of type Dict
                    resultItem.Product_Description             = reader.GetDictionary(2);
                    resultItem.Product_Description.SourceTable = "cmn_pro_products";
                    loader.Append(resultItem.Product_Description);
                    //3:Parameter Product_Number of type String
                    resultItem.Product_Number = reader.GetString(3);
                    //4:Parameter Product_DocumentationStructure_RefID of type Guid
                    resultItem.Product_DocumentationStructure_RefID = reader.GetGuid(4);
                    //5:Parameter CMN_PRO_Product_VariantID of type Guid
                    resultItem.CMN_PRO_Product_VariantID = reader.GetGuid(5);
                    //6:Parameter IsStandardProductVariant of type bool
                    resultItem.IsStandardProductVariant = reader.GetBoolean(6);
                    //7:Parameter ProductVariantITL of type String
                    resultItem.ProductVariantITL = reader.GetString(7);
                    //8:Parameter IsImportedFromExternalCatalog of type bool
                    resultItem.IsImportedFromExternalCatalog = reader.GetBoolean(8);
                    //9:Parameter IsProductAvailableForOrdering of type bool
                    resultItem.IsProductAvailableForOrdering = reader.GetBoolean(9);
                    //10:Parameter IsObsolete of type bool
                    resultItem.IsObsolete = reader.GetBoolean(10);
                    //11:Parameter VariantName of type Dict
                    resultItem.VariantName             = reader.GetDictionary(11);
                    resultItem.VariantName.SourceTable = "cmn_pro_product_variants";
                    loader.Append(resultItem.VariantName);

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

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