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