2024-12-06 12:36:58 +01:00
|
|
|
|
using System;
|
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
using System.Linq;
|
|
|
|
|
|
using System.Text;
|
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
|
|
namespace BS.Shared.Interface
|
|
|
|
|
|
{
|
|
|
|
|
|
public interface IInvoiceBase
|
|
|
|
|
|
{
|
|
|
|
|
|
string SenderStreet { get; }
|
|
|
|
|
|
string SenderTown { get; }
|
|
|
|
|
|
string SenderPostCode { get; }
|
2025-06-23 16:35:33 +02:00
|
|
|
|
IEnumerable<IInvoiceItem> IInvoiceItems { get; }
|
2024-12-06 12:36:58 +01:00
|
|
|
|
}
|
|
|
|
|
|
}
|