10 lines
152 B
C#
Raw Normal View History

2025-04-01 13:41:50 +08:00
using RIZO.Server.EFCore;
namespace RIZO.Server.IEFContext
{
public interface IEFContext
{
EFCoreContext CreateDBContext();
}
}