Example #1
0
        public override object Clone(string sNodeName)
        {
            OfferCommissionResults results = new OfferCommissionResults();

            foreach (OfferCommissionResult result in this)
            {
                results.Add((OfferCommissionResult)result.Clone(sNodeName));
            }
            return(results);
        }
 public override void Initialize()
 {
     base.Initialize();
     this._EndWorkDate              = "";
     this._AssignDate               = "";
     this._Status                   = new BasicInfoDetail();
     this._CorrelateOffer           = new Offer();
     this._CorrelateCommission      = new BasicInfoDetail();
     this._AdminExpert              = new CommissionExpert();
     this._OfferEngineerings        = new Engineerings();
     this._GovReports               = new GovernmentReports();
     this._CommissionReports        = new OfferCommissionReports();
     this._Sessions                 = new CommissionSessions();
     this._CommissionResults        = new OfferCommissionResults();
     this._orderInCommissionSession = 0;
 }