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