Newer
Older
Cohesion / ProductDelegates.cs
@Derek Comartin Derek Comartin on 6 May 2021 247 bytes Tests with interface and delegates
using System.Threading.Tasks;

namespace Cohesion
{
    public static class ProductDelegates
    {
        public delegate Task<Product> GetProductBySku(string sku);
        public delegate Task<Product> GetProductForSaleBySku(string sku);
    }
}