2025-08-27 07:52:34 +00:00
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
namespace DDD
|
|
|
|
{
|
2025-08-27 08:25:11 +00:00
|
|
|
public interface ICustomerAi
|
2025-08-27 07:52:34 +00:00
|
|
|
{
|
2025-08-28 03:49:47 +00:00
|
|
|
Task InitializeAi(CustomerDataEntry inCustomerDataEntry);
|
2025-08-27 07:52:34 +00:00
|
|
|
}
|
|
|
|
}
|