Merge branch 'main' into tw-bootstrap

This commit is contained in:
James Montemagno
2023-10-18 08:14:44 -07:00
committed by GitHub
13 changed files with 129 additions and 96 deletions

View File

@@ -3,7 +3,7 @@ using Microsoft.eShopWeb.ApplicationCore.Entities.BasketAggregate;
namespace Microsoft.eShopWeb.ApplicationCore.Specifications;
public sealed class BasketWithItemsSpecification : Specification<Basket>, ISingleResultSpecification
public sealed class BasketWithItemsSpecification : Specification<Basket>
{
public BasketWithItemsSpecification(int basketId)
{

View File

@@ -3,7 +3,7 @@ using Microsoft.eShopWeb.ApplicationCore.Entities.OrderAggregate;
namespace Microsoft.eShopWeb.ApplicationCore.Specifications;
public class OrderWithItemsByIdSpec : Specification<Order>, ISingleResultSpecification
public class OrderWithItemsByIdSpec : Specification<Order>
{
public OrderWithItemsByIdSpec(int orderId)
{