public IActionResult Get()
        {
            try
            {
                var condiments = _condimentRepo.GetCondiments();

                if (condiments.Count() > 0)
                {
                    return(Ok(_mapper.Map <IEnumerable <Condiment>, IEnumerable <CondimentViewModel> >(condiments)));
                }
                else
                {
                    return(NotFound());
                }
            }
            catch (Exception ex)
            {
                _logger.LogError($"Failed to get condiments: {ex}");

                return(BadRequest("Failed to get condiments"));
            }
        }