NewGaoKaoApi/New_College.Repository/BASE/IV_CustomerInfoRepository.cs

12 lines
265 B
C#

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