public async Task HandleAsync(CreateCell command)
 => await _handler
 .Run(async() =>
 {
     await _tableService.AddCellAsync(command.TableId, command.UserId,
                                      command.RowNumber, command.ColumnLetter, command.Text);
 })
 .Next()
 .ExecuteAllAsync();