missed files

This commit is contained in:
2025-05-14 10:52:22 +02:00
parent d2c6ff071e
commit af41f63db4
2 changed files with 4 additions and 0 deletions

View File

@@ -921,6 +921,8 @@ namespace BeWo.ViewModel
public string SenderTown => DataContract.SenderTown;
public string SenderPostCode => DataContract.SenderPostCode;
public IList<IInvoiceItem> IInvoiceItems => throw new NotImplementedException();
protected override void InitByDataContract(InvoiceBaseDC pDataContract)
{
_SupportConceptOid = pDataContract.SupportConceptOid;

View File

@@ -123,6 +123,8 @@ namespace BS.Shared.DataContracts
}
}
public IList<IInvoiceItem> IInvoiceItems => throw new NotImplementedException();
public bool ContainsRecipientAddressData()
{
return !Utils.AreAllNullOrEmpty(this.RecipientStreet, this.RecipientPostCode, this.RecipientTown);