From an Exrin design standpoint, should each database model have their own Service
?
I find that I may need to check the same thing within the database in multiple MainModel
s. I figured I would create a Service
for these database models to do these repeated operations and have the a service for a MainModel
not only implement its own IService
interface but also inherit from these database model services.