45 lines
952 B
C#
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();
|
|
}
|
|
}
|