public override object Clone(string sNodeName)
        {
            InquiryResponses responses = new InquiryResponses();

            foreach (InquiryResponse response in this)
            {
                responses.Add((InquiryResponse)response.Clone(sNodeName));
            }
            return(responses);
        }
Esempio n. 2
0
 public override void Initialize()
 {
     base.Initialize();
     this._OpportunityDate          = "";
     this._Text                     = "";
     this._ResponseAbstract         = "";
     this._Responses                = new InquiryResponses();
     this._CorrelateOffer           = new Offer();
     this._CorrelateLetter          = new Letter();
     this._CorrelateExpert          = new CommissionExpert();
     this._CorrelateOfferCommission = new OfferCommission();
     this._WordDoc                  = new GeneralDocument();
     this._Pursuits                 = new InquiryPursuits();
     this.Sensitivity               = new BasicInfoDetail();
 }