Exemplo n.º 1
0
 public void AddCartWcf()
 {
     using (var proxy = new BestilNemtServiceRef.BestilNemtServiceClient())
     {
         proxy.Open();
         var cart = new Cart
         {
             ShopId     = 1,
             PersonId   = 1,
             TotalPrice = new decimal(5)
         };
         var id = proxy.AddCart(cart);
         Assert.AreNotEqual(0, id);
     }
 }