17 lines
458 B
C#
17 lines
458 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>
|
|
/// V_CustomerInfoRepository
|
|
/// </summary>
|
|
public class V_CustomerInfoRepository : BaseRepository<V_CustomerInfo>, IV_CustomerInfoRepository
|
|
{
|
|
public V_CustomerInfoRepository(IUnitOfWork unitOfWork) : base(unitOfWork)
|
|
{
|
|
}
|
|
}
|
|
} |