public IActionResult GetInsertedStock(ProductQuantityCheckModel model)
        {
            var response = _product.GetQuantitySet(model, User.Identity.Name);

            return(Json(response));
        }