static void Main(string[] args)
 {
     SmartPhone sp = new SmartPhone();
     Console.WriteLine(sp.battery.PercentualeCarica);
 }
        static void Main(string[] args)
        {
            SmartPhone sp = new SmartPhone();

            Console.WriteLine(sp.battery.PercentualeCarica);
        }
 internal Battery(SmartPhone phone)
 {
     this.phone = phone;
 }