Click here to Skip to main content
15,886,003 members
Articles / Web Development / ASP.NET

Parichay (A Simple & Small Asp.Net MVC Social Network Starter)

Rate me:
Please Sign up or sign in to vote.
4.77/5 (20 votes)
22 Feb 2012GPL316 min read 205.7K   7.2K   48  
Parichay (A Simple & Small Asp.Net MVC Social Network Starter)
namespace Parichay.Data.Entity
{
    /// <summary>
    /// Base Plain Old CLR Object (POCO) representing the common attributes of a provider objects.
    /// </summary>
    public abstract class AbstractProviderEntity
    {
        #region Fields
        private int id;
        private string name;
        private string loweredName;
        private string description;
        #endregion Fields

        #region Properties
        public int Id
        {
            get { return id; }
            set { id = value; }
        }
        public string Name
        {
            get { return name; }
            set
            {
                name = value;
                LoweredName = value.ToLower();
            }
        }
        public string LoweredName
        {
            get { return loweredName; }
            set { loweredName = value; }
        }
        public string Description
        {
            get { return description; }
            set { description = value; }
        }
        #endregion Properties

        #region Initialization
        public AbstractProviderEntity()
        {
        }
        public AbstractProviderEntity(string name)
        {
            Name = name;
        }
        #endregion Initialization
    }
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The GNU General Public License (GPLv3)


Written By
Software Developer (Senior)
Singapore Singapore
I love programming, reading, and meditation. I like to explore management and productivity.

Comments and Discussions