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
530 B
15 lines
530 B
namespace Tiobon.Core.Services;
|
|
|
|
/// <summary>
|
|
/// 开班费用 (服务)
|
|
/// </summary>
|
|
public class Ghre_OpenClassFeeServices : BaseServices<Ghre_OpenClassFee, Ghre_OpenClassFeeDto, InsertGhre_OpenClassFeeInput, EditGhre_OpenClassFeeInput>, IGhre_OpenClassFeeServices
|
|
{
|
|
private readonly IBaseRepository<Ghre_OpenClassFee> _dal;
|
|
public Ghre_OpenClassFeeServices(ICaching caching, IBaseRepository<Ghre_OpenClassFee> dal)
|
|
{
|
|
this._dal = dal;
|
|
base.BaseDal = dal;
|
|
base._caching = caching;
|
|
}
|
|
} |