Click here to Skip to main content
15,898,035 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 208.3K   7.2K   48  
Parichay (A Simple & Small Asp.Net MVC Social Network Starter)
using System;
using System.Collections.Generic;
using System.Text;
using System.ComponentModel.DataAnnotations;

namespace Parichay.Data.Entity
{
    /// <summary>
    /// An object representation of the Member_Friends table
    /// </summary>
    [Serializable]
    public class MemberFriends
    {
        protected System.Int32 _Id;

        private System.DateTime _Createdon;
        private System.Int32 _Isfavorite;
        private MemberDetails _Friendid;
        private MemberDetails _MemberDetails;
        private System.DateTime _Modifiedon;

        public virtual System.DateTime Createdon
        {
            get
            {
                return _Createdon;
            }
            set
            {
                _Createdon = value;
            }
        }

        public virtual System.Int32 Isfavorite
        {
            get
            {
                return _Isfavorite;
            }
            set
            {
                _Isfavorite = value;
            }
        }

        [Required]
        public virtual MemberDetails Friendid
        {
            get
            {
                return _Friendid;
            }
            set
            {
                _Friendid = value;
            }
        }

        public virtual System.Int32 Id
        {
            get
            {
                return _Id;
            }
            set
            {
                _Id = value;
            }
        }

        [Required]
        public virtual MemberDetails MemberDetails
        {
            get
            {
                return _MemberDetails;
            }
            set
            {
                _MemberDetails = value;
            }
        }
        public virtual System.DateTime Modifiedon
        {
            get
            {
                return _Modifiedon;
            }
            set
            {
                _Modifiedon = value;
            }
        }

        public bool bIsfavorite
        {
            get { return (_Isfavorite != 0); }
            set { _Isfavorite = value ? 1 : 0; }
        }
    }
}

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