using Entities.Contracts; using TechHelper.Services; namespace TechHelper.Server.Services { public class UserServices : IUserSerivces { public Task AddAsync(User model) { throw new NotImplementedException(); } public Task DeleteAsync(Guid id) { throw new NotImplementedException(); } public Task GetAllAsync(QueryParameter query) { throw new NotImplementedException(); } public Task GetAsync(Guid id) { throw new NotImplementedException(); } public Task GetStudentDetailInfo(Guid userId) { throw new NotImplementedException(); } public Task UpdateAsync(User model) { throw new NotImplementedException(); } } }