11 lines
232 B
C#
11 lines
232 B
C#
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;
|
|
}
|
|
} |