public void setParentLine(LineItemDRM parentLine)
 {
     if (this.envelopeLineRow.lineItemID != parentLine.LineID)
     {
         this.envelopeLineRow.lineItemID = parentLine.LineID;
     }
 }
Exemplo n.º 2
0
        public FFDataSet.EnvelopeLineRow NewEnvelopeLineRow(LineItemDRM lineItem)
        {
            FFDataSet.EnvelopeLineRow newRow = this.NewEnvelopeLineRow();

            newRow.lineItemID = lineItem.LineID;

            return(newRow);
        }
Exemplo n.º 3
0
        public void updateLineItemDependants(LineItemDRM line)
        {
            if (line == null)
            {
                return;
            }

            foreach (AccountDRM account in this.Accounts)
            {
                if (account.ID == line.AccountID)
                {
                    account.dependentLineItemChanged();
                    return;
                }
            }
        }
 public EnvelopeLineDRM(LineItemDRM parentLine)
 {
     this.envelopeLineRow = DataSetModel.Instance.NewEnvelopeLineRow(parentLine);
 }