vote up 1 vote down star

Should a business object contain a reference to other objects (as in the id field references another database record) or should it have an instance of the actual objects.

For example:

public class Company
{
    public int Id { get; set; }
    public CompanyStatus Status { get; set; }
}

or

public class Company
{
    public int Id { get; set; }
    public int Status { get; set; }
}
flag

Please note language of choice here. – GregC Jul 3 at 23:15
The examples indicate that it is C#. – Noldorin Jul 3 at 23:36
@Anthony: could you please clarify something? What's the difference between your two examples? in the second one, is "Status" meant to be an integer foreign key into a Status table? – John Saunders Jul 4 at 0:15
CompanyStatus is a class and yes, int Status represents a foreign from a database. – Anthony Jul 4 at 8:45

4 Answers

vote up 9 vote down check

From my understanding, it should contain references to interfaces, not concrete classes.

public class Company
{
    public int Id { get; set; }
    public ICompanyStatus Status { get; set; }
}

Assuming that the concrete implementation of CompanyStatus in your example was a class and not an enum.

link|flag
I've been very happy with this approach in the last few years. Perhaps it has something to do with the fact that it allows me to inject dependencies (en.wikipedia.org/wiki/Dependency_injection) at run-time. – FOR Jul 3 at 23:29
@Rake36: Why references to interfaces, and not to concrete classes? – John Saunders Jul 4 at 12:32
For some cases, its preferable. It allows for swapping implementations, and helps with certain ORM technologies. It really puts more emphasis on the Contract for the business object. – Nader Shirazie Jul 4 at 16:45
@John Saunders: Like nader is saying, and FOR yesterday as well - using Interfaces makes your code so much more flexible. I'm not a heavily experienced OO developer, but in forcing myself to create Interfaces before I create any concrete implementations, my code just flows together so much better. When I want to add a different implementation (especially when using a factory), I don't have to do much except create the new concrete class. The Business layer doesn't know the difference. You can accomplish this with inheritance heirarchies too, but Interfaces just seem to work better. – Rake36 Jul 5 at 2:08
vote up 3 vote down

When creating Business Layer objects in an OO fashion, you should be using objects directly.

In your example, does int Status refers to the Id of a CompanyStatus object stored somewhere? In that case, it really feels like that's more of a data layer concern. It is usually best to avoid mixing your data layer with your business layer.

link|flag
So I'm correct in thinking that the DAL should have transalted CompanyId from the database into a CompanyStatus or indeed an ICompanyStatus, is this correct? – Anthony Jul 4 at 8:31
Yup, exactly. And when you break it up that way, it gives you a bit more flexibility to change your DAL and business layers independently. – Nader Shirazie Jul 4 at 16:27
vote up 0 vote down

If you're talking about C#, then aggregating an object means you're storing a reference to it.

link|flag
vote up -2 vote down

It depends on the data. Some data should be stored as a copy of the original object, some should be a reference.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.