using System.Collections.Generic; using System.Threading.Tasks; using BlazorShared.Models; namespace BlazorShared.Interfaces; public interface ICatalogLookupDataService where TLookupData : LookupData { Task> List(); }