Castle.Applications.PestControl.Model.Project.Project C# (CSharp) Method

Project() public method

public Project ( bool _isPublic, string _name, string _sourceControl, string _buildSystem, User _owner ) : System
_isPublic bool
_name string
_sourceControl string
_buildSystem string
_owner User
return System
		public Project(bool _isPublic, string _name, string _sourceControl, 
			string _buildSystem, User _owner)
		{
			this._owner = _owner;
			this._isPublic = _isPublic;
			this._name = _name;
			this._sourceControl = _sourceControl;
			this._buildSystem = _buildSystem;

			_sourceControlProperties = new Hashtable(
				CaseInsensitiveHashCodeProvider.Default, CaseInsensitiveComparer.Default);
		}
Project