Newer
Older
TestingWithoutInterfaces / src / ApplicationCore / Interfaces / IBasketQueryService.cs
@Derek Comartin Derek Comartin on 5 Dec 2022 282 bytes Init
using System.Threading.Tasks;

namespace Microsoft.eShopWeb.ApplicationCore.Interfaces;

/// <summary>
/// Specific query used to fetch count without running in memory
/// </summary>
public interface IBasketQueryService
{
    Task<int> CountTotalBasketItems(string username);
}