13 lines
286 B
C#
13 lines
286 B
C#
using linesider_screen_bankend.Services.Interfaces;
|
|
|
|
namespace linesider_screen_bankend.Services
|
|
{
|
|
public class MessageService : IMessageService
|
|
{
|
|
public string GetMessage()
|
|
{
|
|
return "Hello from the Message Service";
|
|
}
|
|
}
|
|
}
|