Example #1
0
    private void BindPrjId()
    {
        ConPayoutContract byContractID = this.pconSer.GetByContractID(this.contractId);

        if (byContractID != null)
        {
            this.hfldPrjId.Value = byContractID.PrjGuid;
        }
    }
Example #2
0
    private void InitData()
    {
        ConPayoutContract byContractID = this.pconSer.GetByContractID(this.contractId);

        if (byContractID != null)
        {
            this.lblContractName.Text = byContractID.ContractName;
            this.hfldPrjId.Value      = byContractID.PrjGuid;
        }
    }