public async Task ExecuteAsync(ChangePrice command) { await ExecuteAsync(command.ProductId, p => p.SetPrice(command.NewPrice)); }
public void Execute(ChangePrice command) { Execute(command.ProductId, p => p.SetPrice(command.NewPrice)); }