public ServiceResult <IEnumerable <Ingredient> > GetIngredientsFromList(int Id)
 {
     return(ServiceResult <IEnumerable <Ingredient> > .SuccessResult(_groceryListRepository.GetIngredientsFromList(Id)));
 }