public async Task <IActionResult> AddProductAsync(AddProductBindingModel model)
        {
            var(IsSuccessed, ErrorMsg) = await _productBLL.AddProductAsync(model.Title, model.Description, model.CategoryID, model.AttachmentUrls);

            return(Json(new
            {
                IsSuccessed,
                ErrorMsg
            }));
        }