42 lines
1.0 KiB
C#
42 lines
1.0 KiB
C#
using BS.Shared.DataContracts.Feature.AI;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace BeWo.Service.Plugins
|
|
{
|
|
public class AiPromptbausteineService
|
|
{
|
|
public IEnumerable<AiPromptbausteinTreeDC> GetAiPromptbausteine()
|
|
{
|
|
//var dc = new AiPromptbausteinTreeDC();
|
|
|
|
//dc.Oid = 1;
|
|
//dc.IsParent = false;
|
|
//dc.Version = 1;
|
|
//dc.Text = "Beispiel";
|
|
|
|
var predefined = new PredefinedAiPromptbausteine();
|
|
|
|
return predefined.GetFullPromptbausteineTree();
|
|
}
|
|
|
|
public IEnumerable<AiPromptbausteinTreeDC> CreateAiPromptbausteine(IEnumerable<AiPromptbausteinTreeDC> aiPromptbausteinDC)
|
|
{
|
|
throw new System.NotImplementedException();
|
|
}
|
|
|
|
public Dictionary<long, long> UpdateAiPromptbausteine(IEnumerable<AiPromptbausteinTreeDC> aiPromptbausteinDCs)
|
|
{
|
|
throw new System.NotImplementedException();
|
|
}
|
|
|
|
public void DeleteAiPromptbausteine(Dictionary<long, long> oid2version)
|
|
{
|
|
throw new System.NotImplementedException();
|
|
}
|
|
}
|
|
}
|