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

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

            DbCommand command = Connection.CreateCommand();

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

            CSV2Core_MySQL.Support.DBSQLSupport.SetParameter(command, "IsShipped", Parameter.IsShipped);

            CSV2Core_MySQL.Support.DBSQLSupport.SetParameter(command, "ShipmentNumber", Parameter.ShipmentNumber);

            CSV2Core_MySQL.Support.DBSQLSupport.SetParameter(command, "IsPartiallyReadyForPicking", Parameter.IsPartiallyReadyForPicking);

            CSV2Core_MySQL.Support.DBSQLSupport.SetParameter(command, "IsReadyForPicking", Parameter.IsReadyForPicking);

            CSV2Core_MySQL.Support.DBSQLSupport.SetParameter(command, "HasPickingStarted", Parameter.HasPickingStarted);

            CSV2Core_MySQL.Support.DBSQLSupport.SetParameter(command, "HasPickingFinished", Parameter.HasPickingFinished);

            CSV2Core_MySQL.Support.DBSQLSupport.SetParameter(command, "IsBilled", Parameter.IsBilled);

            CSV2Core_MySQL.Support.DBSQLSupport.SetParameter(command, "IsManuallyCleared_ForPicking", Parameter.IsManuallyCleared_ForPicking);

            CSV2Core_MySQL.Support.DBSQLSupport.SetParameter(command, "ShipmentCreationDateFrom", Parameter.ShipmentCreationDateFrom);

            CSV2Core_MySQL.Support.DBSQLSupport.SetParameter(command, "ShipmentCreationDateTo", Parameter.ShipmentCreationDateTo);



            List <L2SH_GSHfT_1527> results = new List <L2SH_GSHfT_1527>();
            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[] { "LOG_SHP_Shipment_HeaderID", "IsShipped", "ShipmentHeader_Number", "IsPartiallyReadyForPicking", "IsReadyForPicking", "HasPickingStarted", "HasPickingFinished", "IsBilled", "DemandDate", "IsPartialShippingAllowed", "IsManuallyCleared_ForPicking", "Shippipng_AddressUCD_RefID", "Creation_Timestamp" });
                while (reader.Read())
                {
                    L2SH_GSHfT_1527 resultItem = new L2SH_GSHfT_1527();
                    //0:Parameter LOG_SHP_Shipment_HeaderID of type Guid
                    resultItem.LOG_SHP_Shipment_HeaderID = reader.GetGuid(0);
                    //1:Parameter IsShipped of type bool
                    resultItem.IsShipped = reader.GetBoolean(1);
                    //2:Parameter ShipmentHeader_Number of type String
                    resultItem.ShipmentHeader_Number = reader.GetString(2);
                    //3:Parameter IsPartiallyReadyForPicking of type bool
                    resultItem.IsPartiallyReadyForPicking = reader.GetBoolean(3);
                    //4:Parameter IsReadyForPicking of type bool
                    resultItem.IsReadyForPicking = reader.GetBoolean(4);
                    //5:Parameter HasPickingStarted of type bool
                    resultItem.HasPickingStarted = reader.GetBoolean(5);
                    //6:Parameter HasPickingFinished of type bool
                    resultItem.HasPickingFinished = reader.GetBoolean(6);
                    //7:Parameter IsBilled of type bool
                    resultItem.IsBilled = reader.GetBoolean(7);
                    //8:Parameter DemandDate of type DateTime
                    resultItem.DemandDate = reader.GetDate(8);
                    //9:Parameter IsPartialShippingAllowed of type bool
                    resultItem.IsPartialShippingAllowed = reader.GetBoolean(9);
                    //10:Parameter IsManuallyCleared_ForPicking of type bool
                    resultItem.IsManuallyCleared_ForPicking = reader.GetBoolean(10);
                    //11:Parameter Shippipng_AddressUCD_RefID of type Guid
                    resultItem.Shippipng_AddressUCD_RefID = reader.GetGuid(11);
                    //12:Parameter Creation_Timestamp of type DateTime
                    resultItem.Creation_Timestamp = reader.GetDate(12);

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

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