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
512 B
15 lines
512 B
namespace Tiobon.Core.Services;
|
|
|
|
/// <summary>
|
|
/// 学分规则 (服务)
|
|
/// </summary>
|
|
public class Ghre_CreditRuleServices : BaseServices<Ghre_CreditRule, Ghre_CreditRuleDto, InsertGhre_CreditRuleInput, EditGhre_CreditRuleInput>, IGhre_CreditRuleServices
|
|
{
|
|
private readonly IBaseRepository<Ghre_CreditRule> _dal;
|
|
public Ghre_CreditRuleServices(ICaching caching, IBaseRepository<Ghre_CreditRule> dal)
|
|
{
|
|
this._dal = dal;
|
|
base.BaseDal = dal;
|
|
base._caching = caching;
|
|
}
|
|
} |