Example #1
0
 public async Task <ActionResult> PostDraft([FromBody] CreateProductDraftCommand command)
 {
     return(new JsonResult(await _productApplicationService.CreateProductDraftAsync(command)));
 }