public async Task <ActionResult> Delete([FromQuery] DeleteProductCatalog deleteProductCatalog)
        {
            var CatalogDelete = await _iProductCatalogService.DeleteProductCatalog(deleteProductCatalog);

            return(Ok(CatalogDelete));
        }
Exemple #2
0
 public async Task <CommonResponse> DeleteProductCatalog(DeleteProductCatalog globalCodeDeleteModel)
 {
     return(await ExecuteAll <CommonResponse>("Pdt.DeleteProductCatalog", globalCodeDeleteModel));
 }
 public async Task <CommonResponse> DeleteProductCatalog(DeleteProductCatalog deleteProductCatalog)
 {
     return(await _productCatalogRepository.DeleteProductCatalog(deleteProductCatalog));
 }