2016-06-27 01:45:38 +02:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
|
|
|
|
|
|
namespace BS.Shared.DataContracts
|
|
|
|
|
|
{
|
|
|
|
|
|
public partial class InvoiceBaseDC
|
|
|
|
|
|
{
|
|
|
|
|
|
public InvoiceBaseDC()
|
|
|
|
|
|
{
|
|
|
|
|
|
this.InvoiceItems = new List<InvoiceItemDC>();
|
|
|
|
|
|
this.SenderContactInformations = new List<ContactDC>();
|
|
|
|
|
|
this.RecipientContactInformations = new List<ContactDC>();
|
|
|
|
|
|
}
|
2023-08-16 10:25:05 +02:00
|
|
|
|
}
|
2016-06-27 01:45:38 +02:00
|
|
|
|
}
|