public async Task <IEnumerable <CoffeeItem> > Handle(ListCoffeesQuery request, CancellationToken cancellationToken)
        {
            this.logger.LogInformation("Fetching a list of all coffees.");

            return(await coffeeRepository.GetAllItems());
        }