コード例 #1
0
ファイル: Program.cs プロジェクト: mosiddiqai/DotNetCoreStudy
        static void Main(string[] args)
        {
            IAdapter adapter   = new Adapter();
            var      employees = adapter.GetEmployees();

            foreach (var item in employees)
            {
                Console.WriteLine($"Firstname : {item.FirstName}, Last name : {item.LastName}");
            }

            Console.ReadLine();
        }