Esempio n. 1
0
 public OrderClothesUI(Order _order,Bag _bag,Customer _customer,Clothes _chonseClothes)
 {
     this.order = _order;
     this.bag = _bag;
     this.customer = _customer;
     this.chonseClothes = _chonseClothes;
 }
Esempio n. 2
0
 // 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();
 }