CQRSMicroservices.Customers.CustomerCommandHandler.Handle C# (CSharp) Метод

Handle() приватный Метод

private Handle ( CreateCustomerCommand command ) : System.Threading.Tasks.Task
command CreateCustomerCommand
Результат System.Threading.Tasks.Task
    private async Task Handle(CreateCustomerCommand command)
    {
      await Repository.ExecuteOnNew<CustomerAggregateRoot>(command.CustomerId, command);
    }
  }
CustomerCommandHandler