dotnet-data/PoweredSoft.Data.Core/IDbContextFactoryProvider.cs
2018-11-23 01:22:05 -06:00

12 lines
229 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace PoweredSoft.Data.Core
{
public interface IDbContextFactoryProvider
{
IDbContextFactory GetContextFactory(Type contextType);
}
}