public ServiceResult <Ingredient> AddIngredientToList(Ingredient ingredient)
 {
     return(ServiceResult <Ingredient> .SuccessResult(_groceryListRepository.AddIngredientToList(ingredient)));
 }