CQRSMicroservices.Customers.CustomerCommandHandler.Handle C# (CSharp) Method

Handle() private method

private Handle ( CreateCustomerCommand command ) : System.Threading.Tasks.Task
command CreateCustomerCommand
return System.Threading.Tasks.Task
    private async Task Handle(CreateCustomerCommand command)
    {
      await Repository.ExecuteOnNew<CustomerAggregateRoot>(command.CustomerId, command);
    }
  }
CustomerCommandHandler