public JsonResult OnPostCreate(CreateProductCategory command) { var result = _productCategoryApplication.Create(command); return(new JsonResult(result)); //return RedirectToPage("./Index"); }
public JsonResult OnPostCreate(CreateProductCategory command) { var result = _productCategoryApplication.Create(command); return(new JsonResult(result)); }
public IActionResult OnPost(CreateProductCategory command) { _productCategoryApplication.Create(command); return(RedirectToPage("Index")); }
public JsonResult OnPostCreate(ProductCategoryCreate create) { var result = _productCategoryApplication.Create(create); return(new JsonResult(result)); }