diff --git a/BackgroundService/Jobs/Test/TestService.cs b/BackgroundService/Jobs/Test/TestService.cs index 0a52c791..2d2e0dc4 100644 --- a/BackgroundService/Jobs/Test/TestService.cs +++ b/BackgroundService/Jobs/Test/TestService.cs @@ -1,4 +1,6 @@ -namespace BackgroundService.Services; +using BackgroundService.Services; + +namespace BackgroundService.Jobs.Test; public class TestService:ITestService { diff --git a/BackgroundService/JobsBootstrapper.cs b/BackgroundService/JobsBootstrapper.cs index 356c3e09..e8fd6397 100644 --- a/BackgroundService/JobsBootstrapper.cs +++ b/BackgroundService/JobsBootstrapper.cs @@ -1,4 +1,5 @@ using BackgroundService.Jobs; +using BackgroundService.Jobs.Test; using BackgroundService.Services; namespace BackgroundService;