using Tiobon.Core.IServices;
using Tiobon.Core.Model.Models;
using Tiobon.Core.Services.BASE;
using Tiobon.Core.IRepository.Base;
namespace Tiobon.Core.Services
{
///
/// 试卷配置 (服务)
///
public class Ghre_ExamPaperConfigServices : BaseServices, IGhre_ExamPaperConfigServices
{
private readonly IBaseRepository _dal;
public Ghre_ExamPaperConfigServices(IBaseRepository dal)
{
this._dal = dal;
base.BaseDal = dal;
}
}
}