using Govor.Core.Models; using Govor.Core.Repositories; namespace Govor.Data.Repositories; public class UsersRepository : IUsersRepository { public Task> GetAll() { throw new NotImplementedException(); } public Task FindById(Guid id) { throw new NotImplementedException(); } public Task> FindByRangeId(IEnumerable ids) { throw new NotImplementedException(); } public Task FindByUsername(string username) { throw new NotImplementedException(); } public Task> FindByRangeUsername(IEnumerable usernames) { throw new NotImplementedException(); } public Task> 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 Exists(User user) { throw new NotImplementedException(); } public Task ExistsById(Guid id) { throw new NotImplementedException(); } public Task ExistsUsername(string username) { throw new NotImplementedException(); } }