Example #1
0
        static void Main(string[] args)
        {
            Console.WriteLine("University Management System ");

            Console.WriteLine("Developer At Kuratoli Software Solutions");
            Console.WriteLine("Develop by Mehedi");

            Console.WriteLine("\n Valid sections :- \n");

            course  cr 1 = new course("java", 2, 3, 4.0, 5);
            section sec1 = new section("x", "OOP2", 5, 2, 4.0);
            section sec2 = new section("y", "OOP2", 5, 3, 3.0);
            section sec3 = new section("d", "dcom", 3, 3, 4.0);
            section sec4 = new section("J", "c++", 4, 6, 3.0);
            section sec5 = new section("o", "c", 3, 1, 3.0);
            section sec6 = new section("u", "OOAD", 4, 3, 7.0);
            section sec7 = new section("i", "OOAD", 2, 7, 4.0);



            cr1.ShowInfo();

            sec2.ShowInfo();

            dept d1 = new departments("FST");
            dept d2 = new departments("FBA");
            dept d3 = new departments("FASS");
            dept d4 = new departments("FE");

            d1.AddCourse(crs1);

            d1.ShowAllCourses();

            Console.WriteLine("\nAdding Courses\n");
            d1.AddCourse(sec1, sec2, sec3, sec4, sec5, sec5, sec6);
            d1.ShowAllCourses();

            Console.WriteLine("\nFaculty Name\n");
            faculty f1 = new faculty("mk", "");
            faculty f2 = new faculty("nb", "");
            faculty f3 = new faculty("hg", "");
            faculty f4 = new faculty("yr", "");


            Thour t1 = new Thour("C++", 3, d1);
            Thour t2 = new Thour("c", 3, d1);
            Thour t3 = new Thour("java", 3, d1);


            f1.AddCredit(t1, t2, t3);
            f1.ShowAllCredits();
        }
Example #2
0
        ////////////////////////////////////////////////////////////////////////////////////////////////////////////

        private void Timer_Tick(object sender, EventArgs e)
        {
            if (Tsecond == 59)
            {
                Tminute++; Tsecond = 00;
            }
            else
            {
                Tsecond++;
            }
            if (Tminute == 59)
            {
                Thour++; Tminute = 00;
            }
            if (Tsecond < 10)
            {
                TxSecond = "0" + Tsecond.ToString();
            }
            else
            {
                TxSecond = Tsecond.ToString();
            }
            if (Tminute < 10)
            {
                TxMinute = "0" + Tminute.ToString();
            }
            else
            {
                TxMinute = Tminute.ToString();
            }
            if (Thour < 24)
            {
                Txhour = "0" + Thour.ToString();;
            }
            else
            {
                Txhour = Thour.ToString();
            }

            StrWTime    = Txhour + ":" + TxMinute + ":" + TxSecond;
            udtime.Text = StrWTime;

            if (Thour == Convert.ToInt32(HT.Text))
            {
                if (Tminute == Convert.ToInt32(MT.Text) - 5)
                {
                    if (Tsecond == 00)
                    {
                        MSGOUT("WARNING : Limited Time is Ending!", UserName + ", Your Limited Time is been Ending. AFTER '5 MINUTES' WE WILL DOWN YOUR LEAGUE. IMMEDIATELY EXIT THE GAME.");
                        WPlayer.controls.stop();
                        WPlayer.settings.volume = 75;
                        Core.Say(UserName + ", Your Limited Time is Ended!");
                        WPlayer.settings.volume = Vol;
                        WPlay("Music/MUS2");
                    }
                }
                else if (Tminute == Convert.ToInt32(MT.Text))
                {
                    if (Tsecond == 00)
                    {
                        LEVELDOWN();
                        MSGOUT("WARNING : DOWN YOUR LEAGUE!", "We HAVE DECIDED to DOWN your LEAGUE 'DUE TO you was not CONSIDER about your GAME PLAYING TIME'. Please Consider About your self.");
                        KillTask();
                    }
                }
            }
            if (Thour == 1)
            {
                if (Tminute == 00)
                {
                    if (Tsecond == 00)
                    {
                        LEVELUP();
                    }
                }
            }
        }