using System.Threading.Tasks; namespace Microsoft.eShopWeb.ApplicationCore.Interfaces; /// /// Specific query used to fetch count without running in memory /// public interface IBasketQueryService { Task CountTotalBasketItems(string username); }