11 lines
197 B
C#
11 lines
197 B
C#
using BackgroundService.Services;
|
|
|
|
namespace BackgroundService.Jobs.Test;
|
|
|
|
public class TestService:ITestService
|
|
{
|
|
public void Execute()
|
|
{
|
|
Console.WriteLine("Hello World!");
|
|
}
|
|
} |