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
|
|
|
|
|
|
{
|
2025-06-03 12:24:30 +02:00
|
|
|
|
long? Oid { get; }
|
2025-11-10 11:21:11 +01:00
|
|
|
|
string InvoiceNumber { get; }
|
2025-11-07 14:54:55 +01:00
|
|
|
|
string InvoiceTitle { get; }
|
|
|
|
|
|
string InvoiceId { get; }
|
2024-12-06 12:36:58 +01:00
|
|
|
|
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
|
|
|
|
}
|
|
|
|
|
|
}
|