///<summary>
 /// Invokes the method for the given Connection, and Transaction, leaving them open/not commited if no exceptions occured
 ///<summary>
 public static FR_Guid Invoke(DbConnection Connection, DbTransaction Transaction, P_L5IN_DIJS_1052 Parameter, CSV2Core.SessionSecurity.SessionSecurityTicket securityTicket = null)
 {
     return(Invoke(Connection, Transaction, null, Parameter, securityTicket));
 }
        protected static FR_Guid Execute(DbConnection Connection, DbTransaction Transaction, P_L5IN_DIJS_1052 Parameter, CSV2Core.SessionSecurity.SessionSecurityTicket securityTicket = null)
        {
            //Leave UserCode region to enable user code saving
            #region UserCode
            var returnValue = new FR_Guid();
            //Put your code here

            //load InvetoryJob
            var inventoryJob = new CL1_LOG_WRH_INJ.ORM_LOG_WRH_INJ_InventoryJob_Series();
            inventoryJob.Load(Connection, Transaction, Parameter.InventoryJobSeriesID);

            //delete invetory Participating Shelves
            var invetoryParticipatingShelves = CL1_LOG_WRH_INJ.ORM_LOG_WRH_INJ_InventoryJob_Series_ParticipatingShelf.Query.SoftDelete(
                Connection,
                Transaction,
                new CL1_LOG_WRH_INJ.ORM_LOG_WRH_INJ_InventoryJob_Series_ParticipatingShelf.Query
            {
                LOG_WRH_INJ_InventoryJob_Series_RefID = inventoryJob.LOG_WRH_INJ_InventoryJob_SeriesID,
                Tenant_RefID = securityTicket.TenantID
            });

            //delete inventoryJobSeriesRythms
            var inventoryJobSeriesRythms = CL1_LOG_WRH_INJ.ORM_LOG_WRH_INJ_InventoryJob_Series_Rythm.Query.SoftDelete(
                Connection,
                Transaction,
                new ORM_LOG_WRH_INJ_InventoryJob_Series_Rythm.Query
            {
                InventoryJob_Series_RefID = inventoryJob.LOG_WRH_INJ_InventoryJob_SeriesID,
                Tenant_RefID = securityTicket.TenantID
            });

            //delete invetory job
            inventoryJob.IsDeleted = true;
            inventoryJob.Save(Connection, Transaction);

            return(returnValue);

            #endregion UserCode
        }
 ///<summary>
 /// Opens the connection/transaction for the given connectionString, and closes them when complete
 ///<summary>
 public static FR_Guid Invoke(string ConnectionString, P_L5IN_DIJS_1052 Parameter, CSV2Core.SessionSecurity.SessionSecurityTicket securityTicket = null)
 {
     return(Invoke(null, null, ConnectionString, Parameter, securityTicket));
 }
        ///<summary>
        /// Method Invocation of wrapper classes
        ///<summary>
        protected static FR_Guid Invoke(DbConnection Connection, DbTransaction Transaction, string ConnectionString, P_L5IN_DIJS_1052 Parameter, CSV2Core.SessionSecurity.SessionSecurityTicket securityTicket = null)
        {
            bool cleanupConnection  = Connection == null;
            bool cleanupTransaction = Transaction == null;

            FR_Guid functionReturn = new FR_Guid();

            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_InvetoryJobSeries", ex);
            }
            return(functionReturn);
        }