public async Task <ReadOnlyQuote> HandleAsync(CreateQuote command)
 {
     return(await _quotesRepository.CreateQuote(command.Phrase, command.Attribution));
 }