I'm using FluentValidation framework. And at the moment I have several validators (per entity). I'm keeping entities in a separate assembly (ProjectName.Domain) and validators either.
I've read about a service layer that presents mediator layer between repositories and controllers (http://www.asp.net/mvc/tutorials/older-versions/models-(data)/validating-with-a-service-layer-cs).
Is it OK to hold service layer in the same assembly?
As far as I understand the purpose of service layer is to hold concrete (or possibly generic) repository and corresponding validator and make a validation over repository items. So implementations may vary. Am I right?
How to make service layer using FluentValidation (or framework independent) the right way. Or would it be acceptable to integrate base entity with some FluentValidation AbstractValidator class.
Thanks!