17 lines
438 B
C#
17 lines
438 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>
|
|
/// T_GearInfoRepository
|
|
/// </summary>
|
|
public class T_GearInfoRepository : BaseRepository<T_GearInfo>, IT_GearInfoRepository
|
|
{
|
|
public T_GearInfoRepository(IUnitOfWork unitOfWork) : base(unitOfWork)
|
|
{
|
|
}
|
|
}
|
|
} |