dotnet-data/PoweredSoft.Data.Core/IDbContextFactoryProvider.cs

12 lines
229 B
C#
Raw Normal View History

2018-11-23 02:22:05 -05:00
using System;
using System.Collections.Generic;
using System.Text;
namespace PoweredSoft.Data.Core
{
public interface IDbContextFactoryProvider
{
IDbContextFactory GetContextFactory(Type contextType);
}
}