Mercurial > pub > bltoolkit
annotate Demo/Asp.Net/Web/Controls/CartList.ascx.cs @ 9:1e85f66cf767 default tip
update bltoolkit
| author | nickolay |
|---|---|
| date | Thu, 05 Apr 2018 20:53:26 +0300 |
| parents | f990fcb411a9 |
| children |
| rev | line source |
|---|---|
| 0 | 1 using System; |
| 2 using System.Collections.Generic; | |
| 3 using System.Web.UI; | |
| 4 | |
| 5 using PetShop.ObjectModel; | |
| 6 | |
| 7 namespace PetShop.Web | |
| 8 { | |
| 9 public partial class CartList : UserControl | |
| 10 { | |
| 11 public void Bind(ICollection<CartItem> cart) | |
| 12 { | |
| 13 if (cart != null) | |
| 14 { | |
| 15 repOrdered.DataSource = cart; | |
| 16 repOrdered.DataBind(); | |
| 17 } | |
| 18 } | |
| 19 } | |
| 20 } |
