public int SearchItem() { string mobilename; System.Console.WriteLine("Mời nhập vào tên điện thoại : "); mobilename = Console.ReadLine(); MobileBL mobiBL = new MobileBL(); List <Mobile> ListMs = mobiBL.GetMobilebyName(mobilename); if (ListMs.Count != 0) { var table = new ConsoleTable("Mã sản phẩm", "Tên", "RAM", "Camera", "Màn hình", "CPU", "Sản xuất", "Giá", "Số lượng"); foreach (var item in ListMs) { table.AddRow(item.MobileID, item.MobileName, item.MobileRAM, item.MobileCamera, item.MobileScreen, item.MobileCPU, item.MobileTradeMack, item.MobilePrice, item.MobileQuantity); } table.Write(Format.Alternative); return(1); } else { System.Console.WriteLine("Không tìm thấy sản phẩm nào"); return(0); } }