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