示例#1
0
 internal void Apply(CustomerCreatedEvent @event)
 {
     Id = @event.CustomerId;
     _firstName = @event.FirstName;
     _lastName = @event.LastName;
     _email = @event.Email;
 }
示例#2
0
 public Customer(CreateCustomerCommand command)
 {
     var customerCreatedEvent = new CustomerCreatedEvent(command.CustomerId, command.FirstName, command.LastName, command.Email);
     RaiseEvent(customerCreatedEvent);
 }