You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
545 B
15 lines
545 B
namespace Tiobon.Core.Services;
|
|
|
|
/// <summary>
|
|
/// Ghrs_ListCommonSql (服务)
|
|
/// </summary>
|
|
public class Ghrs_ListCommonSqlServices : BaseServices<Ghrs_ListCommonSql, Ghrs_ListCommonSqlDto, InsertGhrs_ListCommonSqlInput, EditGhrs_ListCommonSqlInput>, IGhrs_ListCommonSqlServices
|
|
{
|
|
private readonly IBaseRepository<Ghrs_ListCommonSql> _dal;
|
|
public Ghrs_ListCommonSqlServices(ICaching caching, IBaseRepository<Ghrs_ListCommonSql> dal)
|
|
{
|
|
this._dal = dal;
|
|
base.BaseDal = dal;
|
|
base._caching = caching;
|
|
}
|
|
} |