コード例 #1
0
        public void Insert()
        {
            Console.WriteLine("hello");
            int    id        = Int32.Parse(Console.ReadLine());
            int    branch    = Int32.Parse(Console.ReadLine());
            string accholder = Console.ReadLine();
            int    bal       = Int32.Parse(Console.ReadLine());

            Accounte a = new Accounte();

            a.Insert(id, accholder, branch, bal);
        }