Files
Yi.Framework/Yi.Framework.Net6/Yi.Framework.Interface/RABC/IStudentService.cs
2023-01-05 20:32:58 +08:00

13 lines
381 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();
}
}