亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? project.cs

?? BugNET is an issue tracking and project issue management solution built using the ASP.NET web applic
?? CS
?? 第 1 頁 / 共 2 頁
字號:
using System;
using System.Data;
using System.Text;
using System.Collections;
using System.Collections.Generic;
using BugNET.DataAccessLayer;
using System.IO;
using System.Web;
using System.Xml.Serialization;

namespace BugNET.BusinessLogicLayer
{
	/// <summary>
	/// Summary description for Project.
	/// </summary>
	public class Project
	{
		private string				_Description;
		private int					_Id;
		private string				_Name;
		private string				_Code;
        private Guid _ManagerId;
		private string				_ManagerUserName;
		private DateTime			_DateCreated;
        private string              _CreatorUserName;
		private string				_UploadPath;
		private bool				_Disabled;
		private Globals.ProjectAccessType	_AccessType;
        private bool                _AllowAttachments;
        private IssueAttachmentStorageType _AttachmentStorageType;
        private string _SvnRepositoryUrl;

		#region Constructors
        /// <summary>
        /// Initializes a new instance of the <see cref="Project"/> class.
        /// </summary>
        /// <param name="projectId">The project id.</param>
        /// <param name="name">The name.</param>
        /// <param name="code">The code.</param>
        /// <param name="description">The description.</param>
        /// <param name="managerUserName">Name of the manager user.</param>
        /// <param name="creatorUserName">Name of the creator user.</param>
        /// <param name="uploadPath">The upload path.</param>
        /// <param name="accessType">Type of the access.</param>
        /// <param name="active">The active.</param>
        /// <param name="allowAttachments">if set to <c>true</c> [allow attachments].</param>
        public Project(int projectId, string name, string code, string description, string managerUserName, string creatorUserName, string uploadPath, Globals.ProjectAccessType accessType, bool disabled, bool allowAttachments, IssueAttachmentStorageType attachmentStorageType, string svnRepositoryUrl)
            : this(projectId, name, code, description, managerUserName, creatorUserName, uploadPath, DateTime.Now, accessType, disabled, allowAttachments, Guid.Empty, attachmentStorageType, svnRepositoryUrl)
    		{}

        /// <summary>
        /// Initializes a new instance of the <see cref="Project"/> class.
        /// </summary>
        /// <param name="projectId">The project id.</param>
        /// <param name="name">The name.</param>
        /// <param name="code">The code.</param>
        /// <param name="description">The description.</param>
        /// <param name="managerUserName">Name of the manager user.</param>
        /// <param name="creatorUserName">Name of the creator user.</param>
        /// <param name="uploadPath">The upload path.</param>
        /// <param name="dateCreated">The date created.</param>
        /// <param name="accessType">Type of the access.</param>
        /// <param name="active">The active.</param>
        /// <param name="allowAttachments">if set to <c>true</c> [allow attachments].</param>
		public Project(int projectId,string name,string code, string description,string managerUserName,
                string creatorUserName, string uploadPath, DateTime dateCreated, Globals.ProjectAccessType accessType, bool disabled, bool allowAttachments, Guid managerId, IssueAttachmentStorageType attachmentStorageType, string svnRepositoryUrl)
			{
				// Validate Mandatory Fields//
				if (name == null ||name.Length==0 )
					throw (new ArgumentOutOfRangeException("name"));

				_Id                     = projectId;
				_Description            = description;
				_Name                   = name;
				_Code					= code;
				_ManagerUserName        = managerUserName;
                _ManagerId              = managerId;
				_CreatorUserName		= creatorUserName;
				_DateCreated            = dateCreated;
				_UploadPath				= uploadPath;
				_Disabled				= disabled;
				_AccessType				= accessType;
                _AllowAttachments       = allowAttachments;
                _AttachmentStorageType  = attachmentStorageType;
                _SvnRepositoryUrl       = svnRepositoryUrl;
			}
            /// <summary>
            /// Initializes a new instance of the <see cref="Project"/> class.
            /// </summary>
			public Project(){}
		#endregion

		#region Properties
            /// <summary>
            /// Gets or sets the id.
            /// </summary>
            /// <value>The id.</value>
			public int Id
			{
				get {return _Id;}
				set {throw new Exception("Cannot set readonly property Id");}
			}

            /// <summary>
            /// Gets or sets the type of the attachment storage.
            /// </summary>
            /// <value>The type of the attachment storage.</value>
            public IssueAttachmentStorageType AttachmentStorageType 
            {
                get { return _AttachmentStorageType; }
                set { _AttachmentStorageType = value; } 
            }
            /// <summary>
            /// Gets or sets the code.
            /// </summary>
            /// <value>The code.</value>
			public string Code
			{
				get{return _Code;}
				set{_Code = value;}
			}

            /// <summary>
            /// Gets or sets the manager id.
            /// </summary>
            /// <value>The manager id.</value>
            public Guid ManagerId
            {
                get { return _ManagerId; }
                set { _ManagerId = value; }
            }

            /// <summary>
            /// Gets or sets the name of the creator user.
            /// </summary>
            /// <value>The name of the creator user.</value>
			public string CreatorUserName
			{
				get {return _CreatorUserName;}
                set { _CreatorUserName = value; }
			}


            /// <summary>
            /// Gets or sets a value indicating whether this <see cref="Project"/> is disabled.
            /// </summary>
            /// <value><c>true</c> if disabled; otherwise, <c>false</c>.</value>
			public bool Disabled 
			{
				get {return _Disabled;}
                set { _Disabled = value; }
			}

            /// <summary>
            /// Gets or sets the name.
            /// </summary>
            /// <value>The name.</value>
			public string Name 
			{
				get
				{
					if (_Name == null ||_Name.Length==0)
						return string.Empty;
					else
						return _Name;
				}
				set {_Name = value;}
			}

            /// <summary>
            /// Gets or sets the description.
            /// </summary>
            /// <value>The description.</value>
			public string Description 
			{
				get 
				{
					if (_Description == null ||_Description.Length==0)
						return string.Empty;
					else
						return _Description;
				}
				set
				{ _Description = value;}
			}

            /// <summary>
            /// Gets or sets the date created.
            /// </summary>
            /// <value>The date created.</value>
			public DateTime DateCreated 
			{
				get {return  _DateCreated;}
				set{throw new Exception("Cannot set readonly property DateCreated");}
			}

            /// <summary>
            /// Gets or sets the name of the manager user.
            /// </summary>
            /// <value>The name of the manager user.</value>
			public string ManagerUserName 
			{
				get {return  _ManagerUserName;}
                set { _ManagerUserName = value; }
			}

            /// <summary>
            /// Gets or sets the upload path.
            /// </summary>
            /// <value>The upload path.</value>
			public string UploadPath
			{
				get 
				{
					if (_UploadPath == null || _UploadPath.Length==0)
						return string.Empty;
					else
						return _UploadPath;
				}
				set {_UploadPath = value;}
			}

            /// <summary>
            /// Gets or sets the type of the access.
            /// </summary>
            /// <value>The type of the access.</value>
			public Globals.ProjectAccessType AccessType
			{
				get
				{
					return _AccessType;

				}
				set
				{
					_AccessType = value;
				}
			}

            /// <summary>
            /// Gets or sets a value indicating whether [allow attachments].
            /// </summary>
            /// <value><c>true</c> if [allow attachments]; otherwise, <c>false</c>.</value>
            public bool AllowAttachments
            {
                get
                {
                    return _AllowAttachments;

                }
                set
                {
                    _AllowAttachments = value;
                }
            }

            /// <summary>
            /// Gets or sets the SVN repository URL.
            /// </summary>
            /// <value>The SVN repository URL.</value>
            public string SvnRepositoryUrl
            {
                get { return _SvnRepositoryUrl; }
                set { _SvnRepositoryUrl = value; }
            }
		#endregion

		#region Public Methods
            /// <summary>
            /// Saves this instance.
            /// </summary>
            /// <returns></returns>
			public bool Save () 
			{
				if (_Id <= 0) 
				{

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
欧美国产日韩一二三区| 18欧美乱大交hd1984| 91精品在线免费| 欧美日韩五月天| 欧美午夜影院一区| 欧洲国内综合视频| 欧美日韩1234| 欧美一级夜夜爽| 欧美成人a在线| 26uuu亚洲综合色| 国产喷白浆一区二区三区| 国产三级一区二区三区| 国产偷国产偷精品高清尤物| 久久综合九色综合欧美亚洲| 2019国产精品| 国产精品1024| 91视频一区二区| 2017欧美狠狠色| 欧美综合在线视频| 91福利在线导航| 成人永久aaa| 国产成人自拍高清视频在线免费播放 | 在线观看91视频| 成人黄色av电影| 国产91精品久久久久久久网曝门| 国产精品亚洲第一区在线暖暖韩国| 不卡影院免费观看| 日韩影院在线观看| 精品一区二区三区蜜桃| 粉嫩一区二区三区在线看| 91最新地址在线播放| 欧美色精品在线视频| 欧美精品一二三区| 精品美女一区二区| 亚洲色图19p| 亚洲成人av免费| 精品一区二区精品| 国产亚洲一区二区三区四区| 国产精品情趣视频| 亚洲成a人片在线观看中文| 经典三级在线一区| 99久久精品免费精品国产| 欧美日韩aaaaaa| 国产人成亚洲第一网站在线播放| 自拍偷拍亚洲激情| 蜜臀国产一区二区三区在线播放| 国产成人亚洲综合a∨婷婷| www.色综合.com| 成人免费毛片高清视频| av在线这里只有精品| 在线精品视频免费观看| 欧美变态tickling挠脚心| 国产欧美日韩精品在线| 亚洲精品老司机| 蜜桃精品视频在线| 色妞www精品视频| 91精品婷婷国产综合久久| 国产精品久久久久一区二区三区共| 午夜不卡av免费| 国产在线日韩欧美| 欧美另类一区二区三区| 久久久三级国产网站| 亚洲欧美aⅴ...| 国产综合色在线| 色菇凉天天综合网| 欧美国产日韩一二三区| 亚洲一区二区三区视频在线播放| 国产传媒久久文化传媒| 欧美在线免费观看亚洲| 国产精品污www在线观看| 欧美日韩一区三区四区| 中文字幕乱码一区二区免费| 韩国视频一区二区| 欧美日韩中文一区| 国产精品国产馆在线真实露脸 | 亚洲国产精品av| 亚洲专区一二三| 国产91对白在线观看九色| 欧美刺激午夜性久久久久久久| 欧美久久一二区| 日本一区二区三区四区在线视频 | 国产精品系列在线| 玖玖九九国产精品| 色婷婷综合久久久久中文 | 国产在线精品一区二区| 欧美猛男男办公室激情| 欧美韩日一区二区三区四区| 精品一区二区三区视频在线观看 | 午夜不卡av在线| 99精品热视频| 欧美一区二区三区四区在线观看 | 欧美日韩国产在线观看| 亚洲乱码国产乱码精品精98午夜| 国产在线看一区| 精品国产不卡一区二区三区| 亚洲狠狠爱一区二区三区| 91影院在线观看| 久久婷婷久久一区二区三区| 美女视频网站黄色亚洲| 在线一区二区三区| 国产精品福利一区二区三区| 国产在线播放一区二区三区| 欧美精品一二三四| 亚洲一区日韩精品中文字幕| 成人国产精品免费网站| 国产欧美日韩在线视频| 国产91色综合久久免费分享| www一区二区| 国产成人精品一区二区三区网站观看| 欧美一二三区精品| 美女视频免费一区| 日韩欧美国产高清| 国产在线播放一区二区三区| 欧美一区二区三区精品| 韩国av一区二区三区在线观看| 欧美一级xxx| 毛片av一区二区| 色综合久久88色综合天天6 | 日韩理论片中文av| 在线视频一区二区三区| 亚洲精品ww久久久久久p站| 欧美羞羞免费网站| 夜色激情一区二区| 欧美一区国产二区| 日韩电影在线观看网站| 亚洲精品一线二线三线 | 91精选在线观看| 另类小说视频一区二区| 久久久久综合网| 国产高清精品久久久久| 国产精品美女www爽爽爽| 国产ts人妖一区二区| 一区二区三区在线观看网站| 色综合欧美在线| 美女视频黄 久久| 久久综合九色综合97婷婷 | 日韩亚洲欧美一区| 国产精品一区二区免费不卡| 欧美国产一区在线| 欧美视频第二页| 日产欧产美韩系列久久99| 欧美激情一区二区三区全黄| 高清在线观看日韩| 亚洲国产日日夜夜| 日本韩国欧美国产| 久久精品国产澳门| 久久久久久免费毛片精品| 成人深夜在线观看| 午夜精品久久一牛影视| 26uuu国产在线精品一区二区| 91亚洲精品久久久蜜桃| 亚洲高清不卡在线| 中文字幕av一区 二区| 在线一区二区视频| 国产精品12区| 亚洲国产日韩精品| 国产欧美va欧美不卡在线 | 亚洲免费观看高清完整版在线| 欧美性猛交一区二区三区精品| 国产在线看一区| 亚洲欧美日韩中文字幕一区二区三区 | 亚洲女爱视频在线| 日韩一级成人av| 色偷偷88欧美精品久久久| 免费不卡在线观看| 一区二区三区精品| 中文字幕精品综合| 91精品国产综合久久婷婷香蕉| 91丨九色丨黑人外教| 日韩成人精品在线| 亚洲欧美日韩在线| 精品欧美乱码久久久久久1区2区 | 国产日产亚洲精品系列| 欧美一区日本一区韩国一区| 成人精品视频网站| 国模套图日韩精品一区二区| 亚洲精品一二三| 亚洲欧美影音先锋| 日韩一区二区免费在线电影| 欧洲av一区二区嗯嗯嗯啊| 欧美aⅴ一区二区三区视频| 一区二区三区精品在线观看| 久久人人97超碰com| 欧美日韩一区成人| 色妹子一区二区| 国产91丝袜在线18| 国产激情视频一区二区在线观看 | 在线不卡a资源高清| 91美女福利视频| 国产成人免费视| 国产在线播放一区二区三区| 亚洲成人在线免费| 亚洲国产日韩a在线播放| 日本一区二区三区免费乱视频| 精品国产一区二区精华| 欧美网站一区二区| 欧美午夜影院一区| 91污在线观看| 91丨porny丨国产入口| 午夜精品久久久|