Click here to Skip to main content
15,881,803 members
Articles / Programming Languages / Visual Basic
Tip/Trick

Interfaces to Add Semantic Meaning

Rate me:
Please Sign up or sign in to vote.
4.00/5 (1 vote)
22 Jun 2014CPOL 7.1K  
Using interfaces to add sematic meaning to your POCO classes

Introduction

Much data are organized in a hierarchical manner - for example as Region.Country.Office or Fund.ShareClass.Account. Each level of these requires a foreign key up to its parent level and this is usually a primitive data type (string, GUID or integer for example) with a meaningful name.

A good habit to get into is the creation of interfaces for these hierarchical layers to tag the properties involved in the hierarchy. For example, if we are using integers for our hierarchy navigation then the fund->shareclass->account, we could create interfaces like:

VB.NET
    '''<summary>
    ''' A fund - top level DTO
    ''' </summary>
    Public Interface IFundRecord
         ''' <summary>
        ''' The unique identifier of the fund
        ''' </summary>
        ReadOnly Property FundIdentifier As Integer

End Interface

Then share class inherits from this:

VB.NET
''' <summary>
''' A share class
''' </summary>
Public Interface IShareClassRecord
    Inherits IFundRecord

    ''' <summary>
    ''' The unique identifier of the share class
    ''' </summary>
    ReadOnly Property ShareClassIdentifier As Integer

End Interface

And because .NET allows multiple interface inheritance, we could make an account link to both a share class and an investor:

VB.NET
''' <summary>
''' An investor account in a share class
''' </summary>
Public Interface IAccountRecord
    Inherits IShareClassRecord, IInvestorRecord

    ''' <summary>
    ''' The unique identifier of the account
    ''' </summary>
    ReadOnly Property AccountIdentifier As Integer

End Interface

History

  • 22nd June, 2014: Initial version

License

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


Written By
Software Developer
Ireland Ireland
C# / SQL Server developer
Microsoft MVP (Azure) 2017
Microsoft MVP (Visual Basic) 2006, 2007

Comments and Discussions

 
-- There are no messages in this forum --