Newer
Older
MessageEncryption / src / BlazorShared / Interfaces / ICatalogBrandService.cs
@Derek Comartin Derek Comartin on 1 Dec 2021 272 bytes Init
using System.Collections.Generic;
using System.Threading.Tasks;
using BlazorShared.Models;

namespace BlazorShared.Interfaces
{
    public interface ICatalogBrandService
    {
        Task<List<CatalogBrand>> List();
        Task<CatalogBrand> GetById(int id);
    }
}