Ejemplo n.º 1
0
        public void Delete()
        {
            DSKhachHang n = new DSKhachHang();

            n.Show();
            string maKh;

            do
            {
                Console.WriteLine();
                Console.WriteLine();
                Console.Write("\t\tNhập mã khách hàng muốn xóa: ");
                maKh = Console.ReadLine();
                maKh = maKh.ToUpper();
                if (maKh.Length == 0)
                {
                    Console.WriteLine("Mời nhập lại !");
                }
            } while (maKh.Length == 0);
            if (TimKhachHang(maKh) != null)
            {
                dskhachhang.Remove(TimKhachHang(maKh));
                deleteTXT(maKh);
                Console.WriteLine();
                Console.WriteLine("\t\t\tDelete successfully !");
            }
            else
            {
                Console.WriteLine("\t\t\tKhông tìm thấy khách hàng cần xóa !");
            }
        }
Ejemplo n.º 2
0
        public void Add()
        {
            KhachHang   t = new KhachHang();
            DSKhachHang n = new DSKhachHang();

            n.Readfile();
            n.Show();
            do
            {
                Console.WriteLine();
                Console.WriteLine();
                Console.Write("\t\tNhập mã khách hàng cần thêm: ");
                t.Makh1 = Console.ReadLine();
                t.Makh1 = t.Makh1.ToUpper();
                if (t.Makh1.Length == 0)
                {
                    Console.WriteLine("Nhập lại: ");
                }
            } while (t.Makh1.Length == 0);
            if (n.KTMa(t.Makh1))
            {
                Console.WriteLine("Mã khách hàng đã tồn tại!");
            }
            else
            {
                t.NhapThem();
                n.ktADD(t.Makh1, t.Hoten1, t.Diachi1, t.SoDt1, t.SoCMT, t.TGmua1, t.SoLanGheTham1);
                Console.WriteLine("Add successfully !!!");
            }
        }
Ejemplo n.º 3
0
        //=====>Sua thong tin khach hang
        public void Update()
        {
            DSKhachHang n = new DSKhachHang();

            n.Show();
            string maKh;

            do
            {
                Console.WriteLine();

                Console.WriteLine();
                Console.Write("\t\tNhập mã khách hàng cần sửa: ");
                maKh = Console.ReadLine();
                maKh = maKh.ToUpper();
                if (maKh.Length == 0)
                {
                    Console.WriteLine("Nhập lại!!!");
                }
            } while (maKh.Length == 0);
            if (TimKhachHang(maKh) != null)
            {
                TimKhachHang(maKh).NhapThem();
                GhiTep();
                Console.WriteLine("Update successfully !!!");
                Console.WriteLine();
                Console.WriteLine("Khách hàng sau khi update xong: ");
                Console.WriteLine("\t\t╔════════════════════════════════════════════════════════════════════════════════════════════════════════╗");
                Console.WriteLine("\t\t║  idKH  |     Name         |  Address  |  PhoneNum  |  IDNum    |   Date     |Visits |      Level       ║");
                Console.WriteLine("\t\t║════════════════════════════════════════════════════════════════════════════════════════════════════════║");
                TimKhachHang(maKh).Show();
                Console.WriteLine("\t\t╚════════════════════════════════════════════════════════════════════════════════════════════════════════╝");
            }
            else
            {
                Console.WriteLine("Không tìm thấy khách hàng cần sửa !!!");
            }
        }