NewGaoKaoApi/New_College.Repository/BASE/ISys_TenantRepository.cs

12 lines
253 B
C#

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