Ejemplo n.º 1
0
        ///<summary>
        /// Method Invocation of wrapper classes
        ///<summary>
        protected static FR_L5CO_GCOWAD_1330 Invoke(DbConnection Connection, DbTransaction Transaction, string ConnectionString, P_L5CO_GCOWAD_1330 Parameter, CSV2Core.SessionSecurity.SessionSecurityTicket securityTicket = null)
        {
            bool cleanupConnection  = Connection == null;
            bool cleanupTransaction = Transaction == null;

            FR_L5CO_GCOWAD_1330 functionReturn = new FR_L5CO_GCOWAD_1330();

            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_CustomerOrder_With_AllDetails", ex);
            }
            return(functionReturn);
        }
Ejemplo n.º 2
0
        protected static FR_L5CO_GCOWAD_1330 Execute(DbConnection Connection, DbTransaction Transaction, P_L5CO_GCOWAD_1330 Parameter, CSV2Core.SessionSecurity.SessionSecurityTicket securityTicket = null)
        {
            #region UserCode
            var returnValue = new FR_L5CO_GCOWAD_1330();

            //Put your code here
            var customerOrderParam = new P_L5CO_GACOfToO_1214();
            customerOrderParam.OrderID = Parameter.OrderHeaderID;
            var customerOrder = cls_Get_AllCustomerOrders_for_Tenant_or_OrderID.Invoke(Connection, Transaction, customerOrderParam, securityTicket).Result.FirstOrDefault();

            if (customerOrder != null)
            {
                var positionsQuery = new P_L2CO_GAOPfToO_1239();
                positionsQuery.OrderHeaderID = customerOrder.ORD_CUO_CustomerOrder_HeaderID;
                var customerOrderPositions = cls_Get_AllOrderPositions_for_Tenant_or_OrderHeader.Invoke(Connection, Transaction, positionsQuery, securityTicket).Result;

                var positionsWithDetailsQuery = new P_L5CO_GCOPwDfH_1421();
                positionsWithDetailsQuery.OrderHeaderID = customerOrder.ORD_CUO_CustomerOrder_HeaderID;
                var customerOrderPositionsWithDetails = cls_Get_CustomerOrderPositions_with_Details_for_HeaderID.Invoke(Connection, Transaction, positionsWithDetailsQuery, securityTicket).Result;

                returnValue.Result       = new L5CO_GCOWAD_1330();
                returnValue.Result.Order = customerOrder;
                returnValue.Result.NumberOfOrderPositions = customerOrderPositions.Length;

                if (Parameter.PositionsDetailsFetched)
                {
                    returnValue.Result.OrderPositionsWithAllDetails = customerOrderPositionsWithDetails;
                }
                else
                {
                    returnValue.Result.OrderPositions = customerOrderPositions;
                }
            }

            return(returnValue);

            #endregion UserCode
        }