dotnet-db-context/PoweredSoft.DbContext.Core/IContextServiceProvider.cs
2021-09-20 10:21:48 -04:00

17 lines
390 B
C#

using System;
namespace PoweredSoft.DbContext.Core
{
public interface IDbContextServiceProvider
{
IDbContextService GetServiceForType<TContext>();
IDbContextService GetServiceForType(Type contextType);
}
public interface IContextServiceFactory
{
bool CanService(Type contextType);
IDbContextService Create(Type contextType);
}
}