﻿
var SoumissionClient = (function () { return { AjouterProduit: function (uniqueKey, callbackMethod) { SoumissionService.AjouterProduit(uniqueKey, callbackMethod); }, RetirerProduit: function (productToRemove, callbackMethod) { SoumissionService.RetirerProduit(productToRemove, callbackMethod); }, AugmenterQuantite: function (productToIncrement, callbackMethod) { SoumissionService.AugmenterQuantite(productToIncrement, callbackMethod); }, DiminuerQuantite: function (productToIncrement, callbackMethod) { SoumissionService.DiminuerQuantite(productToIncrement, callbackMethod); }, Soumettre: function () { }, Vider: function (callbackMethod) { SoumissionService.Vider(callbackMethod); } }; } ());
