public BasketItem(Raidb.BasketItem bi) { id = bi.id; LoadFromDbBasketItem(bi); }
void LoadFromDbBasketItem(Raidb.BasketItem bi) { idMe = bi.idMe; SellType = (SellTypeEnum) Enum.ToObject(typeof (SellTypeEnum), bi.idSellType); idAbonentBasket = bi.idAbonentBaskets; isPurchased = bi.isPurchased; isRetrieved = bi.isRetrieved; price = bi.price; id = bi.id; }