Newer
Older
TestingWithoutInterfaces / src / BlazorShared / Interfaces / ICatalogLookupDataService.cs
@Derek Comartin Derek Comartin on 5 Dec 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();
}