Is it possible to have a generic web api that will support any model in your project?
class BaseApiController :ApiController { private IReposito
It's definitely possible. I've never had a reason to do that before, but if it works for your situation, it should be good.
If all of your models can be saved and retrieved in the exact same way, maybe they should just all be in the same controller instead though?