public OrderClothesUI(Order _order,Bag _bag,Customer _customer,Clothes _chonseClothes) { this.order = _order; this.bag = _bag; this.customer = _customer; this.chonseClothes = _chonseClothes; }
// Hàm lấy chi tiết sản phẩm, truyền vào mã sản phẩm public DataTable showClothesByID(string _id) { chonseClothes = new Clothes(_id); return chonseClothes.showDetail(); }