Files
TechHelper/TechHelper.Server/Services/IUserSerivces.cs
SpecialX 017cc2169c temp
2025-07-01 19:05:07 +08:00

13 lines
333 B
C#

using Entities.Contracts;
using TechHelper.Services;
namespace TechHelper.Server.Services
{
public interface IUserSerivces : IBaseService<User, Guid>
{
Task<ApiResponse> GetStudentDetailInfo(Guid userId);
Task<ApiResponse> RestoreUserRoleInformation(User user);
Task<ApiResponse> VerifyUserInformation(Guid userId);
}
}