예제 #1
0
파일: ShoppingCart.cs 프로젝트: XpiritBV/PU
 public static ShoppingCart GetCart(IPartsUnlimitedContext db, HttpContextBase context)
 {
     var cart = new ShoppingCart(db);
     cart.ShoppingCartId = cart.GetCartId(context);
     return cart;
 }