public ActionResult PostAjaxHandlerAddStockProduct(Guid productID, Guid clientID, Guid trackingTypeID, int quantity) { try { _productAppService.AddStockProduct(productID, clientID, trackingTypeID, quantity); return(Json(new { success = true })); } catch (Exception ex) { throw ex; } }