Odonno on master
refactor(about): move versions … feat(about): add a collaborator… (compare)
Odonno on master
refactor(app): move ViewModels … refactor(auth): split Continuat… (compare)
Odonno on master
feat(backgroundTasks): remove t… (compare)
Odonno on master
fix(notifications): separate un… chore(app): start creating View… refactor(auth): use gitter-api-… (compare)
Odonno on master
fix(notifications): add a way t… (compare)
Odonno on master
build(app): new version (compare)
Odonno on master
feat(notifications): add abilit… Working on feedback... Additional reworking Will reba… and 9 more (compare)
Odonno on master
chore(app): split Tasks project… refactor(auth): use auth method… (compare)
How to handle with data not IEntity?
How do you implement class for data received via the api , but at the same time non-IEntity? there is for example a method.
public async Task<IList<NewsSentimentIndexes>> getNewsSentimentIndexes(NewsRequest request)
{
var res = await _client.getList<NewsSentimentIndexes>(request);
return res.Value;
}
There are news entity and news service, but on it I get some data that do not have ID, so it is not Entity.respectively can no longer implement the IEntity interface for it, and use for NewsApiRepository. How to deal with such data?