9 lines
161 B
C#
9 lines
161 B
C#
namespace BackgroundService.Services;
|
|
|
|
public class TestService:ITestService
|
|
{
|
|
public void Execute()
|
|
{
|
|
Console.WriteLine("Hello World!");
|
|
}
|
|
} |