Click here to Skip to main content
15,893,814 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.4K   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 Log table
	/// </summary>
	[Serializable]
	public class Log
	{
		protected System.Int32 _Id;

		private System.DateTime _Date;
		private System.String _Thread;
		private System.String _Level;
		private System.String _Logger;
		private System.String _Message;
		private System.String _Exception;

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

		public virtual System.DateTime Date
		{
			get
			{
				return _Date;
			}
			set
			{
				_Date = value;
			}
		}

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

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

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

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

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


		protected bool Equals(Log entity)
		{
			if (entity == null) return false;
			if (!base.Equals(entity)) return false;
			if (!Equals(_Id, entity._Id)) return false;
			return true;
		}

		public override bool Equals(object obj)
		{
			if (ReferenceEquals(this, obj)) return true;
			return Equals(obj as Log);
		}

		public override int GetHashCode()
		{
			int result = base.GetHashCode();
			result = 29*result + _Id.GetHashCode();
			return result;
		}

	}
}

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