Add PartnerDepot and EkaerHistory entities, update tags

- Introduced PartnerDepot and EkaerHistory entity classes with serialization and DB mapping.
- Made ICompanyInfoBase.TaxId nullable.
- Added new DB table name constants for PartnerDepot and EkaerHistory.
- Added SignalR tag constants for PartnerDepot and EkaerHistory operations.
- Updated SQL schema compare connection strings and item order.
This commit is contained in:
Loretta 2026-06-05 06:18:33 +02:00
parent d2bdf7e4eb
commit 6f60eaf310
1 changed files with 1 additions and 1 deletions

View File

@ -9,7 +9,7 @@ namespace AyCode.Core.Interfaces;
public interface ICompanyInfoBase
{
string Name { get; }
string TaxId { get; }
string? TaxId { get; }
string CountryCode { get; }
string PostalCode { get; }
string City { get; }