예제 #1
0
        private static void Main()
        {
            var complexSystem = new ComplexSystem();
            IAcceptedContract employeeAdapter = new ComplexSystemAdapter(complexSystem);

            foreach (string item in employeeAdapter.GetList())
            {
                Console.Write(item);
            }
        }
예제 #2
0
 public ComplexSystemAdapter(ComplexSystem complexSystem)
 {
     _ComplexSystem = complexSystem;
 }