Files
Govor/Govor.Data/Repositories/UsersRepository.cs
T
2025-06-16 22:31:45 +07:00

72 lines
1.5 KiB
C#

using Govor.Core.Models;
using Govor.Core.Repositories;
namespace Govor.Data.Repositories;
public class UsersRepository : IUsersRepository
{
public Task<IEnumerable<User>> GetAll()
{
throw new NotImplementedException();
}
public Task<User> FindById(Guid id)
{
throw new NotImplementedException();
}
public Task<IEnumerable<User>> FindByRangeId(IEnumerable<Guid> ids)
{
throw new NotImplementedException();
}
public Task<User> FindByUsername(string username)
{
throw new NotImplementedException();
}
public Task<IEnumerable<User>> FindByRangeUsername(IEnumerable<string> usernames)
{
throw new NotImplementedException();
}
public Task<IEnumerable<User>> FindUsersByCreatedDate(DateOnly createdDate)
{
throw new NotImplementedException();
}
public Task Add(User user)
{
throw new NotImplementedException();
}
public Task Update(User user)
{
throw new NotImplementedException();
}
public Task Remove(User user)
{
throw new NotImplementedException();
}
public Task Remove(Guid userId)
{
throw new NotImplementedException();
}
public Task<bool> Exists(User user)
{
throw new NotImplementedException();
}
public Task<bool> ExistsById(Guid id)
{
throw new NotImplementedException();
}
public Task<bool> ExistsUsername(string username)
{
throw new NotImplementedException();
}
}