Exemplo n.º 1
0
        public static void FamousDaves()
        {
            Fashion    fash = new Fashion();
            Resturants r    = new Resturants();

            fash.Pants();
            fash.Shirts();
            r.Chipotle();
        }
Exemplo n.º 2
0
        static void Main(string[] args)
        {
            Resturants r = new Resturants();
            Fashion    f = new Fashion();

            Console.WriteLine("This is the main method landing page");

            r.Chipotle();
            f.Pants();



            Console.ReadLine();
        }