Fix region bug

This commit is contained in:
Dan Clark
2025-02-12 20:59:38 +00:00
parent 92ea28d647
commit 5740e03ba1
24 changed files with 277 additions and 183 deletions
+2 -4
View File
@@ -1,8 +1,6 @@
using Microsoft.Extensions.DependencyInjection;
namespace Toolkit.Foundation;
namespace Toolkit.Foundation;
public interface IScopedServiceProvider<TService>
{
bool TryGet(TService service, out IServiceScope? serviceScope);
bool TryGet(TService service, out IServiceProvider? serviceProvider);
}