Пример #1
0
        }       //	MRequestUpdate

        /**
         *  Parent Constructor
         *	@param parent request
         */
        public MRequestUpdate(MRequest parent) :
            base(parent.GetCtx(), 0, parent.Get_TrxName())
        {
            //super (parent.GetContext(), 0, parent.Get_TrxName());
            SetClientOrg(parent);
            SetR_Request_ID(parent.GetR_Request_ID());
            //
            SetStartTime(parent.GetStartTime());
            SetEndTime(parent.GetEndTime());
            SetResult(parent.GetResult());
            SetQtySpent(parent.GetQtySpent());
            SetQtyInvoiced(parent.GetQtyInvoiced());
            SetM_ProductSpent_ID(parent.GetM_ProductSpent_ID());
            SetConfidentialTypeEntry(parent.GetConfidentialTypeEntry());
        }       //	MRequestUpdate
Пример #2
0
 /**
  *  Parent Action Constructor
  *	@param request parent
  *	@param newRecord new (copy all)
  */
 public MRequestAction(MRequest request, bool newRecord)
     : this(request.GetCtx(), 0, request.Get_TrxName())
 {
     SetClientOrg(request);
     SetR_Request_ID(request.GetR_Request_ID());
 }