From 117b5df4472c2464ae96840d3bfcff15ea5e0636 Mon Sep 17 00:00:00 2001 From: MahanCh Date: Mon, 28 Jul 2025 16:03:35 +0330 Subject: [PATCH] change namespace --- BackgroundService/Jobs/Test/TestService.cs | 4 +++- BackgroundService/JobsBootstrapper.cs | 1 + 2 files changed, 4 insertions(+), 1 deletion(-) 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;