From 6f60eaf310c32ea392500978d40c48d3397e7c6e Mon Sep 17 00:00:00 2001 From: Loretta Date: Fri, 5 Jun 2026 06:18:33 +0200 Subject: [PATCH] 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. --- AyCode.Core/Interfaces/ICompanyInfoBase.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/AyCode.Core/Interfaces/ICompanyInfoBase.cs b/AyCode.Core/Interfaces/ICompanyInfoBase.cs index 5f4c272..43e7168 100644 --- a/AyCode.Core/Interfaces/ICompanyInfoBase.cs +++ b/AyCode.Core/Interfaces/ICompanyInfoBase.cs @@ -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; }