18 lines
544 B
C#
18 lines
544 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_VolunteerTableDetailServices : BaseServices<U_VolunteerTableDetail>, IU_VolunteerTableDetailServices
|
|
{
|
|
private readonly IBaseRepository<U_VolunteerTableDetail> _dal;
|
|
public U_VolunteerTableDetailServices(IBaseRepository<U_VolunteerTableDetail> dal)
|
|
{
|
|
this._dal = dal;
|
|
base.BaseDal = dal;
|
|
}
|
|
}
|
|
} |