예제 #1
0
파일: Program.cs 프로젝트: omry777/Tel_Hai
        static void Main(string[] args)
        {
            Console.WriteLine("Hello DbConnector");
            DAL.Student s1 = new DAL.Student("Moshe ", "Cohen ", "0123 ");
            s1.PrintTo();
            StudentDB studentdb = new StudentDB();

            Console.WriteLine(studentdb.AddNewStudent(s1));
            Console.ReadKey();
        }