示例#1
0
文件: Program.cs 项目: Susi77/Task6.1
        static void Main(string[] args)
        {
            EmployDAL employDAL = new EmployDAL();

            for (int i = 1; i < 10; ++i)
            {
                employDAL.InsertEmploy
                    (new Employ
                {
                    ID = 1, Name = "Susi" + i, Age = 21, Salary = 500000
                });
                Console.WriteLine($"ResultText for Employ {i}: {employDAL.ResultText}");
            }

            Console.ReadKey();
        }