NewGaoKaoApi/New_College.Repository/BASE/IU_VolunteerTableRepository.cs

12 lines
271 B
C#

using New_College.IRepository.Base;
using New_College.Model.Models;
namespace New_College.IRepository
{
/// <summary>
/// IU_VolunteerTableRepository
/// </summary>
public interface IU_VolunteerTableRepository : IBaseRepository<U_VolunteerTable>
{
}
}