18 lines
508 B
C#
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_HighSchoolRankServices : BaseServices<D_HighSchoolRank>, ID_HighSchoolRankServices
|
|
{
|
|
private readonly IBaseRepository<D_HighSchoolRank> _dal;
|
|
public D_HighSchoolRankServices(IBaseRepository<D_HighSchoolRank> dal)
|
|
{
|
|
this._dal = dal;
|
|
base.BaseDal = dal;
|
|
}
|
|
}
|
|
} |