You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
API/src/Model2Entities/UserRepository.cs

46 lines
1.1 KiB

using SharedEF;
namespace Model2Entities;
public partial class DbDataManager
{
public class UserRepository : IUserRepository
{
private readonly DbDataManager _dataManager;
public UserRepository(DbDataManager dataManager)
{
_dataManager = dataManager;
}
public async Task<IEnumerable<User>> GetItems(int index, int count, Enum? orderingProperty = null, bool descending = false)
{
throw new NotImplementedException();
}
public async Task<User> GetItemById(int id)
{
throw new NotImplementedException();
}
public async Task<User> UpdateItem(int oldItem, User newItem)
{
throw new NotImplementedException();
}
public async Task<User> AddItem(User item)
{
throw new NotImplementedException();
}
public async Task<bool> DeleteItem(User item)
{
throw new NotImplementedException();
}
public async Task<int> GetNbItems()
{
throw new NotImplementedException();
}
}
}