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/Ghre/Ghre_QuestionAnswerServices.cs

21 lines
670 B

using Tiobon.Core.IServices;
using Tiobon.Core.Model.Models;
using Tiobon.Core.Services.BASE;
using Tiobon.Core.IRepository.Base;
namespace Tiobon.Core.Services
{
/// <summary>
/// 题目答案 (服务)
/// </summary>
public class Ghre_QuestionAnswerServices : BaseServices<Ghre_QuestionAnswer, Ghre_QuestionAnswerDto, InsertGhre_QuestionAnswerInput, EditGhre_QuestionAnswerInput>, IGhre_QuestionAnswerServices
{
private readonly IBaseRepository<Ghre_QuestionAnswer> _dal;
public Ghre_QuestionAnswerServices(IBaseRepository<Ghre_QuestionAnswer> dal)
{
this._dal = dal;
base.BaseDal = dal;
}
}
}