Skip to content

Commit e3de4bc

Browse files
author
Marcel Schmidt
committed
Validating cart event > Uses result of type ActionResult
1 parent 3e9757a commit e3de4bc

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

src/Libraries/SmartStore.Services/Cart/ValidatingCartEvent.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,6 @@ public ValidatingCartEvent(
2323

2424
public IList<string> Warnings { get; set; }
2525

26-
public ViewResult Result { get; set; }
26+
public ActionResult Result { get; set; }
2727
}
2828
}

src/Libraries/SmartStore.Services/Orders/ValidatingCartEventConsumer.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ public ValidatingCartEventConsumer(
3030
_workContext = workContext;
3131
}
3232

33-
public void HandleEvent(ValidatingCartEvent message) // services // customer groups
33+
public void HandleEvent(ValidatingCartEvent message)
3434
{
3535
// Default Order Totals restriction
3636
if (message.Customer == null || message.Warnings == null || message.Cart == null)

0 commit comments

Comments
 (0)