public RecipeDto GetItem(int id)
        {
            Recipe recipe = _recipeRepository.GetEntity(id);

            recipe.History = _historyRepository.GetEntities(x => x.RecipeId == id)
                             .ToList();

            return(_converter.EntityToDto(recipe));
        }