Exemplo n.º 1
0
 public HttpResponseMessage AddProductToCart(int store_id, int customer_id, int product_id, int qty, int cartgroup_id)
 {
     try
     {
         var result = _ProductServices.AddProductToCart(store_id, customer_id, product_id, qty, cartgroup_id);
         return(Request.CreateResponse(HttpStatusCode.OK, result));
     }
     catch (Exception)
     {
         throw;
     }
 }