17 lines
433 B
C#
17 lines
433 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>
|
|
/// SysRegionRepository
|
|
/// </summary>
|
|
public class SysRegionRepository : BaseRepository<SysRegion>, ISysRegionRepository
|
|
{
|
|
public SysRegionRepository(IUnitOfWork unitOfWork) : base(unitOfWork)
|
|
{
|
|
}
|
|
}
|
|
} |