public override void Initialize()
 {
     base.Initialize();
     this._AssignDate               = "";
     this._EndDate                  = "";
     this._CorrelateExpert          = new CommissionExpert();
     this._CorrelateOffer           = new Offer();
     this._CorrelateOfferCommission = new OfferCommission();
     this._CorrelateGovReports      = new GovernmentReports();
 }
예제 #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();
 }
 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;
 }
예제 #4
0
 public override void Initialize()
 {
     base.Initialize();
     this._Title = "";
     this._ParticularDescription = "";
     this._JustificationReasons  = "";
     this._ConsiderationText     = "";
     this._ApprovalArchive       = "";
     this._Opinion1           = "";
     this._Opinion2           = "";
     this._Opinion3           = "";
     this._CoWordDocument     = new GeneralDocument();
     this._CoOffer            = new Offer();
     this._CoCommissionExpert = new CommissionExpert();
     this._Pics     = new PreObservationPics();
     this._CoLetter = new Letter();
 }
        public override SbnObject Clone(string sNodeName)
        {
            CommissionExpert expert = new CommissionExpert {
                ID       = base.ID,
                ExpertID = this._ExpertID
            };

            if (!object.ReferenceEquals(this.CorrelateCommission, null))
            {
                expert.CorrelateCommission = (BasicInfoDetail)this.CorrelateCommission.Clone(sNodeName);
            }
            if (!object.ReferenceEquals(this.CorrelatePerson, null))
            {
                expert.CorrelatePerson = (WFPerson)this.CorrelatePerson.Clone(sNodeName);
            }
            expert.IsActive    = this.IsActive;
            expert.IsSecretary = this.IsSecretary;
            return(expert);
        }