18 lines
462 B
C#
18 lines
462 B
C#
using New_College.IRepository.Base;
|
|
using New_College.Model.Models;
|
|
using New_College.Model.ViewModels;
|
|
using System.Collections.Generic;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace New_College.IRepository
|
|
{
|
|
/// <summary>
|
|
/// ID_UniversityRankRepository
|
|
/// </summary>
|
|
public interface ID_UniversityRankRepository : IBaseRepository<D_UniversityRank>
|
|
{
|
|
|
|
Task<List<UniversityPcRankList>> GetPcUniversityRank(UniversityRankQuery query);
|
|
|
|
}
|
|
} |