using Entities.Contracts; using TechHelper.Services; namespace TechHelper.Server.Services { public interface IUserSerivces : IBaseService { Task GetStudentDetailInfo(Guid userId); } }