# Conflicts: # Data/Data.csproj # Data/Entities/InvoiceBase.cs # Host/Web.Secrets.config.template # Host/Web.config # Service/ServiceBehavior/AdminServiceMessageInspector.cs # Service/ServiceContracts/IAdminService.cs # Shared/BeWoEntityEnums.cs # Shared/DataContracts/InvoiceBaseDC.cs
18 lines
356 B
C#
18 lines
356 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace BS.Shared.Interface
|
|
{
|
|
public interface IInvoiceBase
|
|
{
|
|
long? Oid { get; }
|
|
string SenderStreet { get; }
|
|
string SenderTown { get; }
|
|
string SenderPostCode { get; }
|
|
IEnumerable<IInvoiceItem> IInvoiceItems { get; }
|
|
}
|
|
}
|