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