NewGaoKaoApi/New_College.Services/D_HollandMapExplainServices.cs

18 lines
526 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_HollandMapExplainServices : BaseServices<D_HollandMapExplain>, ID_HollandMapExplainServices
{
private readonly IBaseRepository<D_HollandMapExplain> _dal;
public D_HollandMapExplainServices(IBaseRepository<D_HollandMapExplain> dal)
{
this._dal = dal;
base.BaseDal = dal;
}
}
}