Re-adding BasketQueryService

This commit is contained in:
Steve Smith
2021-12-04 11:49:05 -05:00
parent a675f3ad57
commit 20b060aeb3
6 changed files with 65 additions and 23 deletions

View File

@@ -0,0 +1,12 @@
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);
}