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