NewGaoKaoApi/New_College.Services/U_VolunteerTableServices.cs

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