17 lines
468 B
C#
17 lines
468 B
C#
using New_College.IRepository;
|
|
using New_College.IRepository.UnitOfWork;
|
|
using New_College.Model.Models;
|
|
using New_College.Repository.Base;
|
|
|
|
namespace New_College.Repository
|
|
{
|
|
/// <summary>
|
|
/// U_VolunteerTableRepository
|
|
/// </summary>
|
|
public class U_VolunteerTableRepository : BaseRepository<U_VolunteerTable>, IU_VolunteerTableRepository
|
|
{
|
|
public U_VolunteerTableRepository(IUnitOfWork unitOfWork) : base(unitOfWork)
|
|
{
|
|
}
|
|
}
|
|
} |