Beispiel #1
0
        public void DeleteMapping(int categorySysNo, List <int> productSysNoList, EventHandler <RestClientEventArgs <object> > callback)
        {
            string relativeUrl = "/MKTService/ECDynamicCategory/DeleteCategoryProductMapping";
            ECDynamicCategoryMappingReq req = new ECDynamicCategoryMappingReq
            {
                DynamicCategorySysNo = categorySysNo,
                ProductSysNoList     = productSysNoList
            };

            restClient.Delete(relativeUrl, req, callback);
        }
Beispiel #2
0
 public void DeleteDynamicCategoryProductMapping(ECDynamicCategoryMappingReq req)
 {
     appService.DeleteCategoryProductMapping(req.DynamicCategorySysNo.Value, req.ProductSysNoList);
 }
Beispiel #3
0
 public void InsertDynamicCategoryProductMapping(ECDynamicCategoryMappingReq req)
 {
     appService.InsertCategoryProductMapping(req.DynamicCategorySysNo.Value, req.ProductSysNoList);
 }