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 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 CreateAiPromptbausteine(IEnumerable aiPromptbausteinDC) { throw new System.NotImplementedException(); } public Dictionary UpdateAiPromptbausteine(IEnumerable aiPromptbausteinDCs) { throw new System.NotImplementedException(); } public void DeleteAiPromptbausteine(Dictionary oid2version) { throw new System.NotImplementedException(); } } }