NewGaoKaoApi/New_College.Services/D_MyHistoryInfoServices.cs

18 lines
502 B
C#

using New_College.IServices;
using New_College.Model.Models;
using New_College.Services.BASE;
using New_College.IRepository.Base;
namespace New_College.Services
{
public class D_MyHistoryInfoServices : BaseServices<D_MyHistoryInfo>, ID_MyHistoryInfoServices
{
private readonly IBaseRepository<D_MyHistoryInfo> _dal;
public D_MyHistoryInfoServices(IBaseRepository<D_MyHistoryInfo> dal)
{
this._dal = dal;
base.BaseDal = dal;
}
}
}