using System.Collections.Generic; namespace BS.Shared.DataContracts { public partial class InvoiceBaseDC { public InvoiceBaseDC() { this.InvoiceItems = new List(); this.SenderContactInformations = new List(); this.RecipientContactInformations = new List(); } } }