Skip to content

Commit

Permalink
event manager
Browse files Browse the repository at this point in the history
  • Loading branch information
SeriaWei committed Aug 27, 2020
1 parent 015efd6 commit 5486cb2
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/ZKEACMS.Shop/Service/OrderService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,14 @@ public class OrderService : ServiceBase<Order, CMSDbContext>, IOrderService
public OrderService(IApplicationContext applicationContext, IOrderItemService orderItemService,
IEnumerable<IPaymentService> paymentServices,
ILocalize localize,
IEventManager eventManager,
CMSDbContext dbContext)
: base(applicationContext, dbContext)
{
_orderItemService = orderItemService;
_paymentServices = paymentServices;
_localize = localize;
_eventManager = eventManager;
}

public override Order Get(params object[] primaryKey)
Expand Down

0 comments on commit 5486cb2

Please sign in to comment.