Click here to Skip to main content
15,880,405 members
Articles / Programming Languages / C#

MData – Using interfaces as domain model

Rate me:
Please Sign up or sign in to vote.
5.00/5 (2 votes)
8 Jul 2012CPOL4 min read 13K   9   1
How I composed the domain model in an experimental framework.

In a conventional domain model, most domain logic resides in then entities themselves, or in a domain layer called services/repository. This brings some advantages (scalability, POCO). But it also has some liabilities. This is certainly the case when the domain relies on services to execute business logic. In those scenarios business logic is separated from the domain model in an almost untestable way. Imagine an example where after an item is sold. Stock should be updated, and diminished by the quantity sold. In a pure POCO world, this could look like this.

I am not saying this approach is absolutely wrong. In the .net community, I saw once too many that people have a very black/white vision on how a domain model should look. I personally think you can/have to adapt the technical implementation to the requirement of the project. Some small projects may justify to use a very simple ‘home-grown’ application framework, while bigger projects usually benefit more from the bigger, wide spread frameworks. This is ofcourse only true if you know there are alternatives. That said, let’s look how I composed the domain model in this experimental framework.

MData Domain Model Entities

In MData, all entities in the domain are defined as interfaces. This means MData uses the ‘POCO principle’ by default. The advantage here is that the implementation of the actual properties/logic can be different in different layers of the domain. This may sound pretty dramatic, but it doesn’t have to be. Imagine a WCF service layer that needs extra validation on entities that are created/modified, etc. This is an example of how a typical domain entity could look like.

C#
[MData("Customer")]
public interface ICustomer
{
    int Id { get; set; }
    string Name { get; set; }
    string Notes { get; set; }
    bool IsActive { get; set; }
    DateTime CreatedOn { get; set; }
    DateTime ModifiedOn { get; set; }

    void Active();
    void DeActivate();
}

Now I have some issues with this model. First of all it contains some properties/methods I would like to be abstracted away from the Customer entity. We could imagine that other entities in the domain would also want to implement IsActive, in combination with Activate() and DeActivate() methods. The most obvious solution would be to add this to a specialized base class, possibly derived from a generic entity base class. Something like this:

C#
public class ActivatableEntity : EntityBase
{
    public bool IsActive { get; set; }
        
    public void Active()
    {
        //... 
    }

    public void DeActivate()
    {
        //... 
    }
}

All fine and dandy, but as we are working with interfaces only, this is not an option. Of course it’s to simple to say we just can’t use such a typical OO way of doing things. In this simple scenario the disadvantage of using OO might not be clear right away. But imagine we want to abstract the auditing part of the entity (CreatedOn, ModifiedOn) away too. It could be done in a similar way as for IsActive abstraction, but then we cannot easily combine different ‘patterns’ in one entity. It wouldn’t be easy to use the IsActive in one entity, and both IsActive and Audit in another entity.

C#
public class ConcreteEntityA : ActivatableEntity
{
    //...
}

public class ConcreteEntityB : ActivatableEntity, AuditEntity //not possible!!!
{
    //...
}

public class AuditEntity : EntityBase
{
    DateTime CreatedOn { get; set; }
    DateTime ModifiedOn { get; set; }
}

public class ActivatableEntity : EntityBase
{
    public bool IsActive { get; set; }
        
    public void Active()
    {
        //... 
    }

    public void DeActivate()
    {
        //... 
    }
}

Using interface to enable multi-inheritance

As you can see, it’s not easy to create a plug and play kind of domain model. This is were MData tries to solve something. As you can see in the previous code sample, one way to solve this problem would be multi inheritance. Normal classes are not an option for multi-inheritance in C#, but interfaces are! By using interfaces for the domain model we get multi inheritance for free. We can solve our requirement like this.

C#
public interface IConcreteEntityA : IActivatableEntity
{
    //...
}

public interface IConcreteEntityB : IActivatableEntity, IAuditEntity //not possible!!!
{
    //...
}

public interface IAuditEntity
{
    DateTime CreatedOn { get; set; }
    DateTime ModifiedOn { get; set; }
}

public interface IActivatableEntity
{
    bool IsActive { get; set; }
        
    void Active();
    void DeActivate();
}

Yay, all fine and dandy those interfaces, but how will we implement our logic in the logic methods (De)Activate, or how can we define calculated properties? Well, that’s were the concept of DomainLogic comes in. DomainLogic is the actual implementation of an MData entity. It will hold the implementation of the methods defined in the interfaces, and the ability to override method getters to enable readonly properties. This is the implementation of the IActivatable domain interface.

C#
public class ActivatableLogic : LogicBase<IActivatableEntity>
{
    public void Active()
    {
        CurrentInstance.IsActive = true;
    }

    public void DeActivate()
    {
        CurrentInstance.IsActive = false;
    }
}

To mapping of interface methods to the logicbase methods is done by convention. This convention is really simple: use exactly the same method definition. Because this is not ‘refactor-safe’ (a change in the interface would not cause our logic class to break the build), I usually define the MData model like this:

C#
public class ActivatableLogic : LogicBase<IActivatableEntity>, IActivatableEntityLogic
{
    public void Active()
    {
        CurrentInstance.IsActive = true;
    }

    public void DeActivate()
    {
        CurrentInstance.IsActive = false;
    }
}

[MData]
public interface IActivatableEntity : IActivatableEntityLogic
{
    bool IsActive { get; set; }
        
}

public interface IActivatableEntityLogic
{
    void Active();
    void DeActivate();
}

This is a compromise between ‘type-safety’ and fragmentation of the domain model.

In the next article we will dive deeper on how the link between the interface and the LogicBase class is done.

In the meanwhile you can find experimental code at github

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer
Belgium Belgium
LinkedIn Profile

I maintain a blog at pietervp.com

Comments and Discussions

 
GeneralCorrect code please Pin
time-best9-Jul-12 9:06
time-best9-Jul-12 9:06 
Hello!
Please correct first code example in block "Using interface to enable multi-inheritance" to remove //not possible comment.
Thank you, for article, but it is not full without LogicBase class description.

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.