Here’s a code snippet showing a little habit of mine — something I do to all my domain and application services:
public interface IPortfolioRepository : IDomainService{ ...}public interface IPortfolioAdministrationService : IApplicationService{ ...}
What’s in these base interfaces? Nothing. They are just labels, used to help make make object roles explicit:
public interface IApplicationService {}public interface IDomainService {}
Why is this a good idea?
- It helps makes implicit concepts — e.g. this is a domain service — explicit.
- It grants you freedom with your class names, without having to suffix everything with Service or Event.
- It lets you do cool stuff like write integration tests to check all your application services are registered correctly.
They’re not only limited to services, by the way. Use them for aggregate roots, entities, value types, and other types of objects:
public interface IPortfolio : IAggregateRoot{ ...}public interface IPortfolio : IEntity{ ...}public class Money : IValueType{ ...}public class BookAddedToPortfolio : IDomainEvent{ ...}
Udi Dahan’s Making Roles Explicit is a must-see presentation on this subject, if you haven’t already seen it. In fact, this example is only a small subset of what you can do with this technique.