NewGaoKaoApi/New_College.Services/D_UniversityRankServices.cs

18 lines
508 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_UniversityRankServices : BaseServices<D_UniversityRank>, ID_UniversityRankServices
{
private readonly IBaseRepository<D_UniversityRank> _dal;
public D_UniversityRankServices(IBaseRepository<D_UniversityRank> dal)
{
this._dal = dal;
base.BaseDal = dal;
}
}
}