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 !"); } }
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 !!!"); } }
//=====>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 !!!"); } }