Put the following code in your Product controller:
return RedirectToAction("SaveAll", "Category")
Here, "SaveAll" is an Action Name and "Category" is Controller Name.
The user will then be redirected to the SaveAll action (i.e., the method will be called).