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.
 
 
 
Tiobon.Web.Core/Tiobon.Core.Services/Ghra/Ghra_GradeServices.cs

14 lines
410 B

namespace Tiobon.Core.Services;
/// <summary>
/// 年级 (服务)
/// </summary>
public class Ghra_GradeServices : BaseServices<Ghra_Grade, Ghra_GradeDto, InsertGhra_GradeInput, EditGhra_GradeInput>, IGhra_GradeServices
{
private readonly IBaseRepository<Ghra_Grade> _dal;
public Ghra_GradeServices(IBaseRepository<Ghra_Grade> dal)
{
this._dal = dal;
base.BaseDal = dal;
}
}