Mise à jour de 'src/Model2Entities/UserRepository.cs'

WORK-EF_WebAPI
David D'ALMEIDA 1 year ago
parent 11f9e17bad
commit 4104dbd5fa

@ -12,42 +12,6 @@ public partial class DbDataManager
{ {
_dataManager = dataManager; _dataManager = dataManager;
} }
public async Task<IEnumerable<User>> GetItems(int index, int count, string? orderingProperty = null,
bool descending = false)
{
return await this.GetUsers(index, count, this.ToEnum(orderingProperty), descending);
}
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();
}
} }
} }
Loading…
Cancel
Save