11 lines
232 B
C#
Raw Permalink Normal View History

2025-03-16 03:17:36 +08:00
using SqlSugar;
namespace Seyounth.Hyosung.Data.Repositories;
public class Repository<T> : SimpleClient<T>, IRepository<T> where T : class, new()
{
public Repository(ISqlSugarClient db)
{
base.Context = db;
}
}