Abhänigkeiten hinzugefügt und Services Klassen fertiggeschrieben

This commit is contained in:
NoKnownName
2025-05-23 11:41:45 +02:00
parent 80931f24f4
commit 2512929dd5
58 changed files with 809 additions and 423 deletions

View File

@@ -1,4 +1,5 @@
using System;
using Models;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
@@ -6,7 +7,10 @@ using System.Threading.Tasks;
namespace Services
{
internal interface IChatService
public interface IChatService
{
Message SendMessage(string sessionID, string userID, string message);
List<Message> GetMessages(string sessionID);
bool DeleteMessage(string messageID);
}
}