17 lines
523 B
C#
17 lines
523 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>
|
|
/// D_SeVolunteerInitializationRepository
|
|
/// </summary>
|
|
public class D_SeVolunteerInitializationRepository : BaseRepository<D_SeVolunteerInitialization>, ID_SeVolunteerInitializationRepository
|
|
{
|
|
public D_SeVolunteerInitializationRepository(IUnitOfWork unitOfWork) : base(unitOfWork)
|
|
{
|
|
}
|
|
}
|
|
} |