34 lines
631 B
C#
34 lines
631 B
C#
|
|
using BS.Shared.DataContracts.Feature.AI.Functions.ServiceRecords;
|
|||
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Linq;
|
|||
|
|
using System.Text;
|
|||
|
|
using System.Threading.Tasks;
|
|||
|
|
|
|||
|
|
namespace BeWo.Service.Plugins
|
|||
|
|
{
|
|||
|
|
public class AiFunctionService
|
|||
|
|
{
|
|||
|
|
public AiFunctionDocResponse ExecuteAiFunctionServiceRecordDocumentation(AiFunctionDocRequest request)
|
|||
|
|
{
|
|||
|
|
// Request valideren
|
|||
|
|
|
|||
|
|
// Request auswerten
|
|||
|
|
|
|||
|
|
// DB Daten holen
|
|||
|
|
|
|||
|
|
// DB Daten prüfen
|
|||
|
|
|
|||
|
|
// Anfrage zusammensetzen
|
|||
|
|
|
|||
|
|
// Anfrage abschicken
|
|||
|
|
|
|||
|
|
// Response auswerten
|
|||
|
|
|
|||
|
|
// Eigene Response erstellen
|
|||
|
|
|
|||
|
|
throw new System.NotImplementedException();
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|