public void Eat(IFood food)
        {
            MyException.CheckFood(this.GetType().Name, food.GetType().Name, this.FavouriteFood);

            this.Weight += this.WeightIncrease * food.Quantity;

            this.FoodEaten += food.Quantity;
        }