public async Task HandleAsync(DeleteQuote command)
 {
     await _quotesRepository.DeleteQuote(command.Id);
 }