I would like to know the right recommendation on below case
My application's business module (single assembly) has below folder structure
-Service (folder)
- MyService.cs - Implements IMyService deals with service to be performed
-DomainModel (folder)
- MyDomainModel.cs - only deals with pure business rules and completely isolated from any infrastructure code. (its a normal class and is not decoupled via any interface)
Scenario is I need to test MethodA in MyService.cs, internally it calls DomainMethodA in MyDomainModel.cs
So here, do I need to Shim DomainMethodA?
Thanks