Question

Given a code project which is supposed to adhere to the SoC principle by implementing loosely coupled layers, having an IoC container, etc., for example, a simple ASP.NET MVC solution which is separated into the following assemblies:

  • Application assembly+namespace
  • Model assembly+namespace (contains a concrete repository to access DB data)

and where a concrete repository in the Model assembly must implement a common interface IMyBusinessRepository, in which assembly would you put that interface?

1) If you put that interface in the Model assembly, chances are that it would be impossible to replace that assembly by another one (at least if it has a different namespacing) without modifying the code of the Application assembly. Also, an alternative IMyBusinessRepository implementation residing in a different assembly would have to reference the original one (Argh!)

2) If you put it in the Application assembly, it would be impossible to use the Model assembly in other projects without referencing the Application assembly (Argh!)

3) Or would you create a separate common assembly just for that interface, and for that matter, for each common interface or set of interfaces? (Argh?)

To summarize, X assembly should be easily replaceable in application A (merely by changing a reference), and reusable in applications B, C, D.

Was it helpful?

Solution

Option 3.

Putting the interface definitions in with the calling code is fine right up until you want to develop against the interfaces but not the component that's holding it (say you want to build a data access provider but you don't want to pull in the whole website project). Putting it with an implementation is just crazy talk :)

would you create a separate common assembly just for that interface, and for that matter, for each common interface or set of interfaces? (Argh?)

I would group interfaces into separate assemblies by thinking about the Commom Closure and Common Reuse principles. By being on their own they will also be more stable. Think about the scenarios in which they will be used - does keeping them together make sense - if so then they are probably OK in one assembly.

OTHER TIPS

You could simply use a Contracts or Interfaces assembly, as you suggested.

However, considering you are attempting to work with-in the separation of concerns principal, are you expecting to replace all the implementations of all your interfaces at the same time, or maybe just a single concrete implementation here and there.

If you expect to replace all then a separate assembly might be best, otherwise you could simply the replacement implementation in the Model assembly alongside the existing implementation and the interfaces are declared in the Model assembly as well.

I would recommend to put interfaces either in separate assembly or close to their implementation within the same assembly. There should be always at least one implementation of the interface along with the interface itself. Common approach is to place interfaces in the same assembly, under separate folder.

SoC is a logical concept which you are trying to translate into a physical one.

The only adverse effect of putting your repositories in the Model is assembly is that maybe in the future it will possible be hard to swap assemblies. I don't understand this concern? Maybe aliens will invade and we need to put galactic time in our databases. Should we code that abstraction now? Probably not.

I don't understand the concern either. Whats preventing you from having Concrete1 : IRepository and Concrete2 : IRepository in the Models assembly?

Also your probably coupling something incorrectly if the core of your application needs to be modified by a change in your Model classes. Thats a bit backwards.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top