コード例 #1
0
ファイル: GSMTest.cs プロジェクト: smihaylovit/TelerikAkademy
        static void Main()
        {
            List<GSM> GSMList = new List<GSM>();
            GSMList.Add(new GSM(Models.LG, ManufacturerType.Default));
            GSMList.Add(new GSM(Models.Nokia, ManufacturerType.Other, 12, null, null));
            GSMList.Add(new GSM(Models.Samsung, ManufacturerType.Default) { Owner = "Dqdo Mraz" });
            GSMList.ForEach(g =>
                {
                    Console.WriteLine(g.ToString());
                });
            Console.WriteLine(GSM.IPhone4S);

            GSMCallHistoryTest historyTest = new GSMCallHistoryTest();
            historyTest.Test();
        }
コード例 #2
0
ファイル: GSMTest.cs プロジェクト: nedevny/TelerikAkademy
        static void Main()
        {
            List <GSM> GSMList = new List <GSM>();

            GSMList.Add(new GSM(Models.LG, ManufacturerType.Default));
            GSMList.Add(new GSM(Models.Nokia, ManufacturerType.Other, 12, null, null));
            GSMList.Add(new GSM(Models.Samsung, ManufacturerType.Default)
            {
                Owner = "Dqdo Mraz"
            });
            GSMList.ForEach(g =>
            {
                Console.WriteLine(g.ToString());
            });
            Console.WriteLine(GSM.IPhone4S);

            GSMCallHistoryTest historyTest = new GSMCallHistoryTest();

            historyTest.Test();
        }
コード例 #3
0
        static void Main()
        {
            GSMTest.PrintGSMsInfo(GSMTest.GenerateGSMs(3)); //problem 7
            Console.WriteLine(new string('-', 50));

            //problem 12
            GSMCallHistoryTest.CreateCalltestHistory();
            GSMCallHistoryTest.DisplayCalltestHistory();
            Console.WriteLine(new string('-', 50));
            GSMCallHistoryTest.CalculateAndPrintTestcallsPrice();
            GSMCallHistoryTest.RemoveLongestCall();
            Console.WriteLine(new string('-', 50));
            Console.WriteLine("{0}\n{1}", "Price after the longest call is removed: ", new string('-', 50));
            GSMCallHistoryTest.CalculateAndPrintTestcallsPrice();
            Console.WriteLine(new string('-', 50));
            Console.WriteLine("{0}\n{1}", "Call history after the longest call is removed: ", new string('-', 50));
            GSMCallHistoryTest.DisplayCalltestHistory();
            Console.WriteLine(new string('-', 50));
            GSMCallHistoryTest.testGSM.ClearCallHistory();
            Console.WriteLine("{0}\n{1}", "Call history list is cleared...", new string('-', 50));
            GSMCallHistoryTest.DisplayCalltestHistory();
        }