Click here to Skip to main content
15,892,480 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 207.2K   7.2K   48  
Parichay (A Simple & Small Asp.Net MVC Social Network Starter)
using System;
using System.Collections.Generic;
using System.ComponentModel;
using Iesi.Collections;
//////using Iesi.Collections.Generic;
using Parichay.Security.Entity.Components;
using Parichay.Security.Entity;

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

		private readonly ISet _FKroleactionsactions = new HashedSet();
		private System.String _ControllerName;
		private System.String _ActionName;

		public virtual ISet FKroleactionsactions
		{
			get
			{
				return _FKroleactionsactions;
			}
		}

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

		public virtual System.String ControllerName
		{
			get
			{
				return _ControllerName;
			}
			set
			{
				if (value == null)
				{
					throw new BusinessException("ControllerNameRequired", "ControllerName must not be null.");
				}
				_ControllerName = value;
			}
		}

		public virtual System.String ActionName
		{
			get
			{
				return _ActionName;
			}
			set
			{
				if (value == null)
				{
					throw new BusinessException("ActionNameRequired", "ActionName must not be null.");
				}
				_ActionName = value;
			}
		}


	}
}

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