Skip to content

Commit

Permalink
Remove the interface ISingleResultSpecification usage from any specif…
Browse files Browse the repository at this point in the history
…ication (dotnet-architecture#959)

ISingleResultSpecification is Obsolete

Co-authored-by: junqiao.duan <junqiao.duan@geneseeq.com>
  • Loading branch information
JunqiaoDuan and junqiao.duan authored Oct 17, 2023
1 parent cd53025 commit 36746a5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

namespace Microsoft.eShopWeb.ApplicationCore.Specifications;

public sealed class BasketWithItemsSpecification : Specification<Basket>, ISingleResultSpecification
public sealed class BasketWithItemsSpecification : Specification<Basket>
{
public BasketWithItemsSpecification(int basketId)
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

namespace Microsoft.eShopWeb.ApplicationCore.Specifications;

public class OrderWithItemsByIdSpec : Specification<Order>, ISingleResultSpecification
public class OrderWithItemsByIdSpec : Specification<Order>
{
public OrderWithItemsByIdSpec(int orderId)
{
Expand Down

0 comments on commit 36746a5

Please sign in to comment.