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

            FR_L5SO_DSH_1440 functionReturn = new FR_L5SO_DSH_1440();

            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_Delete_ShipmentHeader", ex);
            }
            return(functionReturn);
        }
        protected static FR_L5SO_DSH_1440 Execute(DbConnection Connection, DbTransaction Transaction, P_L5SO_DSH_1440 Parameter, CSV2Core.SessionSecurity.SessionSecurityTicket securityTicket = null)
        {
            //Leave UserCode region to enable user code saving
            #region UserCode
            var returnValue = new FR_L5SO_DSH_1440();
            //Put your code here

            ORM_LOG_SHP_Shipment_Header shipmentHeaderToDelate = new ORM_LOG_SHP_Shipment_Header();
            shipmentHeaderToDelate.Load(Connection, Transaction, Parameter.ShipmentHeaderID);

            shipmentHeaderToDelate.Remove(Connection, Transaction);

            returnValue.Result = new L5SO_DSH_1440();
            returnValue.Result.DeletedHeader = Parameter.ShipmentHeaderID;

            return(returnValue);

            #endregion UserCode
        }