Laden über DC

Feature - Data getrennt
Feature <<< AICore
AICore: Verbindung BeWoPlaner -> MikeAiService
This commit is contained in:
2025-09-03 13:40:35 +02:00
parent 625ec07445
commit 9da8c92ca7
47 changed files with 830 additions and 316 deletions

View File

@@ -0,0 +1,19 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace BS.Shared.Interface.Abstract
{
public interface IAddressable
{
string AddressLine1 { get; }
string AddressLine2 { get; }
string Street { get; }
string PostalCode { get; }
string Town { get; }
string State { get; }
string Country { get; }
}
}

View File

@@ -0,0 +1,14 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace BS.Shared.Interface.Abstract
{
public interface IPersonNameable
{
string FirstName { get; }
string LastName { get; }
}
}