mirror of
https://github.com/Govor-team/Govor.git
synced 2026-07-21 11:44:56 +00:00
72 lines
1.5 KiB
C#
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();
|
|
}
|
|
} |