21 lines
563 B
C#
21 lines
563 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using VOL.Model;
|
|
|
|
namespace VOL.Business.IServices.LevelExam
|
|
{
|
|
public interface ILevelExamService
|
|
{
|
|
/// <summary>
|
|
/// 获取考级测评列表
|
|
/// </summary>
|
|
/// <param name="paramDto"></param>
|
|
/// <returns></returns>
|
|
Task<PageDataDto<LevelExamListModel>> GetLevelExamPageList(LevelExamPageListParam paramDto);
|
|
Task<List<LevelExamSpecialModel>> GetLevelExamSpecialList();
|
|
}
|
|
}
|