Newer
Older
GuardClauses / src / BlazorShared / Interfaces / ICatalogLookupDataService.cs
@Derek Comartin Derek Comartin on 15 Aug 2022 258 bytes Init
using System.Collections.Generic;
using System.Threading.Tasks;
using BlazorShared.Models;

namespace BlazorShared.Interfaces;

public interface ICatalogLookupDataService<TLookupData> where TLookupData : LookupData
{
    Task<List<TLookupData>> List();
}