Ejemplo n.º 1
0
 public CreateCustomerCommandHandler(
     NorthwindTradersContext context,
     INotificationService notificationService)
 {
     _context             = context;
     _notificationService = notificationService;
 }
 public UpdateCustomerCommandHandler(NorthwindTradersContext context)
 {
     _context = context;
 }
Ejemplo n.º 3
0
 public GetCustomerDetailQueryHandler(NorthwindTradersContext context)
 {
     _context = context;
 }