Example #1
0
        protected static FR_L2L_GSTfSTID_1427 Execute(DbConnection Connection, DbTransaction Transaction, P_L2L_GSTfSTID_1427 Parameter, CSV2Core.SessionSecurity.SessionSecurityTicket securityTicket = null)
        {
            //Leave UserCode region to enable user code saving
            #region UserCode
            var returnValue = new FR_L2L_GSTfSTID_1427();
            returnValue.Result = new L2L_GSTfSTID_1427();
            //Put your code here

            var shipmentTypeID = Parameter.ShipmentTypeID;

            if (shipmentTypeID == Guid.Empty)
            {
                returnValue.Status       = FR_Status.Error_Internal;
                returnValue.ErrorMessage = "ShipmentTypeID cannot be Guid empty!";
                return(returnValue);
            }

            ORM_LOG_SHP_Shipment_Type orm_shipmentTYpe = new ORM_LOG_SHP_Shipment_Type();
            orm_shipmentTYpe.Load(Connection, Transaction, shipmentTypeID);

            returnValue.Result.ORM_ShipmentType = orm_shipmentTYpe;

            return(returnValue);

            #endregion UserCode
        }
Example #2
0
        ///<summary>
        /// Method Invocation of wrapper classes
        ///<summary>
        protected static FR_L2L_GSTfSTID_1427 Invoke(DbConnection Connection, DbTransaction Transaction, string ConnectionString, P_L2L_GSTfSTID_1427 Parameter, CSV2Core.SessionSecurity.SessionSecurityTicket securityTicket = null)
        {
            bool cleanupConnection  = Connection == null;
            bool cleanupTransaction = Transaction == null;

            FR_L2L_GSTfSTID_1427 functionReturn = new FR_L2L_GSTfSTID_1427();

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