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, ID_HollandMapExplainServices { private readonly IBaseRepository _dal; public D_HollandMapExplainServices(IBaseRepository dal) { this._dal = dal; base.BaseDal = dal; } } }