Example #1
0
File: Test.cs Project: HD-LB/OOP
        static void Main()
        {
            var gsm = new GSM("Nokia 3310", "Nokia", 234.5m, "Ivan");

            Console.WriteLine(gsm);

            for (int i = 0; i < 10; i++)
            {
                gsm.AddCall(new Call()
                {
                    DailedPhoneNumber = "0001" + 1,
                    Duration          = (uint)((i + 1) * 10)
                }
                            );
            }
            Console.WriteLine(gsm.CalculateTotalCost(0.12m));

            Console.WriteLine();
            Console.WriteLine();

            var maxCall = new Call();

            foreach (Call call in gsm.CallHistory)
            {
                Console.WriteLine(call);
                if (maxCall.Duration < call.Duration)
                {
                    maxCall = call;
                }
            }

            gsm.DeleteCall(maxCall);
            Console.WriteLine(gsm.CalculateTotalCost(0.12m));
        }
Example #2
0
        static void Main()
        {
            DateTime date1 = new DateTime(1994, 12, 25, 18, 36, 45);
            DateTime date2 = new DateTime(2005, 11, 12, 21, 30, 40);
            DateTime date3 = new DateTime(2012, 10, 9, 20, 30, 38);
            DateTime date4 = new DateTime(2015, 1, 9, 21, 38, 31);

            GSM newGSM = new GSM("Galaxy Dous", "Samsung", "Ivan", 450, 5, 16000, BatteryTypes.LiIon, 2000, 150);

            newGSM.AddCall(GSM.callHistory, new Calls(date1, "0888999987", 123));
            newGSM.AddCall(GSM.callHistory, new Calls(date2, "0888999988", 143));
            newGSM.AddCall(GSM.callHistory, new Calls(date1, "0888988987", 153));
            newGSM.AddCall(GSM.callHistory, new Calls(date1, "0888987988", 163));
            for (int i = 0; i < newGSM.CallHistory.Count; i++)
            {
                Console.WriteLine(newGSM.CallHistory[i].ToString());
            }
            Console.WriteLine();
            Console.WriteLine("The price is {0:F2} leva. ", newGSM.CallPrice(newGSM.CallHistory, 0.37));
            int   tmpSeconds = int.MinValue;
            Calls tmpCall    = new Calls();

            foreach (Calls Call in newGSM.CallHistory)
            {
                if (Call.Duration > tmpSeconds)
                {
                    tmpCall = Call;
                }
            }
            newGSM.DeleteCall(GSM.callHistory, tmpCall);
            Console.WriteLine();
            Console.WriteLine("The new price is {0:F2} leva. ", newGSM.CallPrice(newGSM.CallHistory, 0.37));
            newGSM.ClearHistory(GSM.callHistory);
            Console.WriteLine();
            for (int i = 0; i < newGSM.CallHistory.Count; i++)
            {
                Console.WriteLine(newGSM.CallHistory[i].ToString());
            }
            Console.WriteLine("The list is empty so nothing is going to show. ");
        }
Example #3
0
 static void Main()
 {
     GSM phone = new GSM("Nokia 3310", "Nokia", 999.01m, "PacoGaroPenio");
     phone.AddCall(new Call(11));
     phone.AddCall(new Call(1511));
     phone.AddCall(new Call(123));
     Console.WriteLine(phone.CalculateTotalPrice(0.37m));
     phone.RemoveCall(new Call(1511));
     Console.WriteLine("Total Price after removing: {0}", phone.CalculateTotalPrice(0.37m));
     phone.ClearCalls();
     Console.WriteLine("Total Price after clearing: {0}", phone.CalculateTotalPrice(0.37m));
 }