public void MarkFruitSpoiled(Fruit fruit)
        {
            fruit.IsSpoiled = true;

            _fruitRepository.Upate(fruit);
        }