Hey there, I'm at the moment trying to make a product management application. The way it works is that you add/edit/delete a Product Category for example "Ventrilo" and then you can add/edit/delete products in that category. Now is my question do I need a controller for both the Category part and the Product part? Like:
/products/categories/add
/products/products/add/{categoryId}/
or is there a way that I somehow can combine it? Seems odd to me that I need 2 controllers for such a thing.. but maybe it's just me.