9 lines
189 B
C#
9 lines
189 B
C#
namespace Gpulse.WCT.DataAnalyzer.Core.Data;
|
|
|
|
/// <summary>
|
|
/// 数据库上下文工厂接口
|
|
/// </summary>
|
|
public interface IDbContextFactory
|
|
{
|
|
WctMinerDbContext CreateDbContext();
|
|
} |