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
566 B
15 lines
566 B
namespace Tiobon.Core.Services;
|
|
|
|
/// <summary>
|
|
/// 必选修规则结果 (服务)
|
|
/// </summary>
|
|
public class Ghre_StudyRuleResultServices : BaseServices<Ghre_StudyRuleResult, Ghre_StudyRuleResultDto, InsertGhre_StudyRuleResultInput, EditGhre_StudyRuleResultInput>, IGhre_StudyRuleResultServices
|
|
{
|
|
private readonly IBaseRepository<Ghre_StudyRuleResult> _dal;
|
|
public Ghre_StudyRuleResultServices(ICaching caching, IBaseRepository<Ghre_StudyRuleResult> dal)
|
|
{
|
|
this._dal = dal;
|
|
base.BaseDal = dal;
|
|
base._caching = caching;
|
|
}
|
|
} |