1
0
tinklu-paslaugos/Lab1/ChatRoom/ChatRoomService.cs
2024-09-15 11:21:42 +03:00

45 lines
952 B
C#

namespace ChatRoom;
using ChatRoomContract;
public class ChatRoomService : IChatRoomService
{
//NOTE: instance-per-request service would need logic to be static or injected from a singleton instance
private readonly ChatRoomLogic logic = new ChatRoomLogic();
public void ApproveMessage(int messageId)
{
throw new NotImplementedException();
}
public int GetClientId()
{
throw new NotImplementedException();
}
public Message? GetNewMessage()
{
throw new NotImplementedException();
}
public int GetStrikes()
{
throw new NotImplementedException();
}
public void RejectMessage(int messageId)
{
throw new NotImplementedException();
}
public bool SendMessage(string contents)
{
throw new NotImplementedException();
}
public void SetClientName(string name)
{
throw new NotImplementedException();
}
}