Feature/generic cached decorator (#604)

* make TODO: Make a generic decorator for any LookupData type

* remove useless GetById in ICatalogLookupDataService
This commit is contained in:
Cédric Michel
2021-10-31 19:54:00 +01:00
committed by GitHub
parent ed63faac84
commit 68beb21f07
6 changed files with 55 additions and 123 deletions

View File

@@ -7,6 +7,5 @@ namespace BlazorShared.Interfaces
public interface ICatalogLookupDataService<TLookupData> where TLookupData : LookupData
{
Task<List<TLookupData>> List();
Task<TLookupData> GetById(int id);
}
}