39 lines
754 B
C#
39 lines
754 B
C#
using Entities.Contracts;
|
|
using TechHelper.Services;
|
|
|
|
namespace TechHelper.Server.Services
|
|
{
|
|
public class UserServices : IUserSerivces
|
|
{
|
|
public Task<ApiResponse> AddAsync(User model)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public Task<ApiResponse> DeleteAsync(Guid id)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public Task<ApiResponse> GetAllAsync(QueryParameter query)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public Task<ApiResponse> GetAsync(Guid id)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public Task<ApiResponse> GetStudentDetailInfo(Guid userId)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public Task<ApiResponse> UpdateAsync(User model)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
}
|
|
}
|