mirror of
https://gitee.com/ccnetcore/Yi
synced 2026-03-04 00:35:47 +08:00
14 lines
435 B
C#
14 lines
435 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Threading.Tasks;
|
|
using Yi.Framework.DtoModel.RABC.Student;
|
|
using Yi.Framework.Interface.Base.Crud;
|
|
|
|
namespace Yi.Framework.Interface.RABC
|
|
{
|
|
public interface IStudentService : ICrudAppService<StudentGetOutput, StudentListOutput, Guid, StudentCreateInput, StudentUpdateInput>
|
|
{
|
|
void GetError();
|
|
Task<List<StudentListOutput>> GetListAsync();
|
|
}
|
|
} |