11 lines
218 B
C#
11 lines
218 B
C#
using Entities.Contracts;
|
|
using TechHelper.Services;
|
|
|
|
namespace TechHelper.Server.Services
|
|
{
|
|
public interface IUserSerivces : IBaseService<User, Guid>
|
|
{
|
|
Task<ApiResponse> GetStudentDetailInfo(Guid userId);
|
|
}
|
|
}
|