Newer
Older
ReliableMessaging / src / BlazorShared / Interfaces / ICatalogLookupDataService.cs
@Derek Comartin Derek Comartin on 10 Apr 2023 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();
}