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

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關(guān)于我們
? 蟲蟲下載站

?? issue.cs

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


namespace BugNET.BusinessLogicLayer
{
	/// <summary>
	/// Issue business object
	/// </summary>
	public class Issue
	{
		#region Private Variables
		private string      _AssignedDisplayName;
		private Guid        _AssignedUserId;
        private string      _AssignedUserName;
		private string      _CreatorDisplayName;
		private string		_CreatorUserName;
		private Guid        _CreatorUserId;
		private string      _LastUpdateDisplayName;
		private string		_LastUpdateUserName;
		private DateTime    _LastUpdate;
		private int         _CategoryId;
		private string      _CategoryName;
		private DateTime    _DateCreated;
		private int         _Id;
		private int         _MilestoneId;
		private string      _MilestoneName;
        private string      _MilestoneImageUrl;
		private int         _PriorityId;
		private string      _PriorityName;
        private string      _PriorityImageUrl;
		private int         _StatusId;
		private string      _StatusName;
        private string      _StatusImageUrl;
		private int         _IssueTypeId;
		private string      _IssueTypeName;
        private string      _IssueTypeImageUrl;
		private int         _ResolutionId;
		private string      _ResolutionName;
        private string      _ResolutionImageUrl;
		private string		_ProjectName;
		private int         _ProjectId;
		private string      _Title;
		private string      _Description;
		private bool		_NewAssignee;
		private string		_ProjectCode;
        private DateTime    _DueDate;
        private int         _Visibility;
        private double      _TimeLogged;
        private decimal      _Estimation;
        private string      _OwnerUserName;
        private string      _OwnerDisplayName;
        private Guid        _OwnerUserId;
        private int _Progress;
        private bool _Disabled;
		#endregion

		#region Constructors

        /// <summary>
        /// Initializes a new instance of the <see cref="T:Issue"/> class.
        /// </summary>
        /// <param name="id">The id.</param>
        /// <param name="projectId">The project id.</param>
        /// <param name="projectName">Name of the project.</param>
        /// <param name="projectCode">The project code.</param>
        /// <param name="title">The title.</param>
        /// <param name="description">The description.</param>
        /// <param name="categoryId">The category id.</param>
        /// <param name="categoryName">Name of the category.</param>
        /// <param name="priorityId">The priority id.</param>
        /// <param name="priorityName">Name of the priority.</param>
        /// <param name="statusId">The status id.</param>
        /// <param name="statusName">Name of the status.</param>
        /// <param name="issueIssueTypeId">The issue type id.</param>
        /// <param name="issueTypeName">Name of the issue type.</param>
        /// <param name="resolutionId">The resolution id.</param>
        /// <param name="resolutionName">Name of the resolution.</param>
        /// <param name="assignedDisplayName">Name of the assigned display.</param>
        /// <param name="assignedUserName">The assigned username.</param>
        /// <param name="assignedUserId">The assigned user id.</param>
        /// <param name="creatorDisplayName">Display name of the creator.</param>
        /// <param name="creatorUserName">The creator username.</param>
        /// <param name="creatorUserId">The creator user id.</param>
        /// <param name="ownerDisplayName">Display name of the owner.</param>
        /// <param name="ownerUserName">The owner username.</param>
        /// <param name="ownerId">The owner id.</param>
        /// <param name="dueDate">The due date.</param>
        /// <param name="milestoneId">The milestone id.</param>
        /// <param name="milestoneName">Name of the milestone.</param>
        /// <param name="visiblity">The visiblity.</param>
        /// <param name="timeLogged">The time logged.</param>
        /// <param name="estimation">The estimation.</param>
        /// <param name="dateCreated">The date created.</param>
        /// <param name="lastUpdate">The last update.</param>
        /// <param name="lastUpdateUserName">The last update username.</param>
        /// <param name="lastUpdateDisplayName">Last name of the update display.</param>
			public Issue(
				int id,
				int projectId,
				string projectName,
				string projectCode,
				string title,
				string description,				
				int categoryId,
				string categoryName,
				int priorityId,
				string priorityName,
                string priorityImageUrl,
				int statusId,
				string statusName,
                string statusImageUrl,
				int issueTypeId,
				string issueTypeName,
                string issueTypeImageUrl,
				int resolutionId,
				string resolutionName,
                string resolutionImageUrl,
				string assignedDisplayName,
                string assignedUserName,
				Guid assignedUserId,
				string creatorDisplayName,
                string creatorUserName,
				Guid creatorUserId,
                string ownerDisplayName,
                string ownerUserName,
                Guid ownerUserId,
                DateTime dueDate,
                int milestoneId,
                string milestoneName,
                string milestoneImageUrl,
                int visiblity,
                double timeLogged,
                decimal estimation,
                DateTime dateCreated,
                DateTime lastUpdate,
				string lastUpdateUserName,
				string lastUpdateDisplayName,
				int progress,
                bool disabled)
			{
				_Id						= id;
				_ProjectId				= projectId;
				_ProjectName			= projectName;
				_ProjectCode			= projectCode;
				_Title				    = title;
                _IssueTypeId            = issueTypeId;
                _IssueTypeName          = issueTypeName;
                _IssueTypeImageUrl      = issueTypeImageUrl;
				_Description			= description;	
				_CategoryId			    = categoryId;
				_CategoryName			= categoryName;
				_MilestoneId			= milestoneId;
				_MilestoneName			= milestoneName;
                _MilestoneImageUrl      = milestoneImageUrl;
				_PriorityId				= priorityId;
				_PriorityName			= priorityName;
                _PriorityImageUrl       = priorityImageUrl;
				_StatusId				= statusId;
				_StatusName				= statusName;
                _StatusImageUrl         = statusImageUrl;
				_IssueTypeId			= issueTypeId;
				_IssueTypeName		    = issueTypeName;
                _IssueTypeImageUrl      = issueTypeImageUrl;
				_ResolutionId           = resolutionId;
				_ResolutionName         = resolutionName;
                _ResolutionImageUrl     = resolutionImageUrl;
				_DateCreated			= dateCreated;
                _AssignedUserName       = assignedUserName;
				_AssignedDisplayName	= assignedDisplayName;
				_AssignedUserId	        = assignedUserId;
				_CreatorDisplayName	    = creatorDisplayName;
				_CreatorUserName		= creatorUserName;
				_CreatorUserId			= creatorUserId;
                _OwnerDisplayName       = ownerDisplayName;
                _OwnerUserName          = ownerUserName;
                _OwnerUserId            = ownerUserId;
				_LastUpdateDisplayName  = lastUpdateDisplayName;
				_LastUpdate				= lastUpdate;
				_LastUpdateUserName		= lastUpdateUserName;
                _DueDate                = dueDate;
                _Visibility             = visiblity;
                _TimeLogged             = timeLogged;
                _Estimation             = estimation;
                _Progress               = progress;
                _Disabled               = disabled;
			}


            /// <summary>
            /// Initializes a new instance of the <see cref="T:Issue"/> class.
            /// </summary>
            /// <param name="projectId">The project id.</param>
            /// <param name="summary">The summary.</param>
            /// <param name="description">The description.</param>
            /// <param name="componentId">The component id.</param>
            /// <param name="versionId">The version id.</param>
            /// <param name="priorityId">The priority id.</param>
            /// <param name="statusId">The status id.</param>
            /// <param name="IssueTypeId">The type id.</param>
            /// <param name="fixedInVersionId">The fixed in version id.</param>
            /// <param name="AssignedToUserName">Name of the assigned to user.</param>
            /// <param name="reporterUserName">The reporter username.</param>
            /// <param name="estimation">The estimation.</param>
			public Issue (int id, int projectId, string title,string description, int categoryId, 
				int priorityId, int statusId, int issueTypeId, int milestoneId, int resolutionId,string ownerUserName, string assignedUserName, string creatorUserName,decimal estimation,int visibility,DateTime dueDate)
				: this
			(
				id,
				projectId,
				String.Empty,
				String.Empty,
				title,
				description,
				categoryId,
				String.Empty,
                priorityId,
                string.Empty,
                string.Empty,
                statusId,
                string.Empty,
                string.Empty,
                issueTypeId,
                string.Empty,
                string.Empty,
                resolutionId,
                string.Empty,
                string.Empty,
                string.Empty,
				assignedUserName,
                Guid.Empty,
				String.Empty,
				creatorUserName,
				Guid.Empty,
				string.Empty,
				ownerUserName,
				Guid.Empty,
                dueDate,
				milestoneId,
				String.Empty,
                string.Empty,
                visibility,
                0,
                estimation,
                DateTime.Now,
                DateTime.Now,
                creatorUserName,
                string.Empty,
                0,
                false
			)
			{
				if(!String.IsNullOrEmpty(AssignedUserName))
					_NewAssignee = true;
			}


            /// <summary>
            /// Initializes a new instance of the <see cref="Issue"/> class.
            /// </summary>
			public Issue(){}
		#endregion	

		#region Properties

            /// <summary>
            /// Gets or sets the progress.
            /// </summary>
            /// <value>The progress.</value>
            public int Progress 
            {
                get{return _Progress;}
                set { _Progress = value; }
            }

            /// <summary>
            /// Gets or sets a value indicating whether this <see cref="Issue"/> 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 estimation.
            /// </summary>
            /// <value>The estimation.</value>
            public decimal Estimation
            {
                get{ return _Estimation;}
                set{ _Estimation = value;}
            }

            /// <summary>
            /// Estimations to string.
            /// </summary>
            /// <param name="estimation">The estimation.</param>
            /// <returns></returns>
            private string EstimationToString(decimal estimation)
            {
                return estimation >= 0 ? estimation.ToString() : "empty";
            }

            /// <summary>
            /// Gets the time logged.
            /// </summary>
            /// <value>The time logged.</value>
            public double TimeLogged
            {
                get { return _TimeLogged; }
            }

           
            /// <summary>
            /// Gets or sets the display name of the assigned to user.
            /// </summary>
            /// <value>The display name of the assigned to user.</value>
            public string AssignedDisplayName
            {
                get
                {
                    if (String.IsNullOrEmpty(_AssignedDisplayName))
                        return string.Empty;
                    else
                        return _AssignedDisplayName;
                }
                set
                {
                    _AssignedDisplayName = value;
                }
            }

            /// <summary>
            /// Gets or sets the display name of the assigned.
            /// </summary>
            /// <value>The display name of the assigned.</value>
			public string AssignedUserName 
			{
				get 
				{
                    if (string.IsNullOrEmpty(_AssignedUserName))
						return string.Empty;
					else
                        return _AssignedUserName;
				}
				set{_AssignedUserName=value;}
			}


            /// <summary>
            /// Gets or sets the visibility.
            /// </summary>
            /// <value>The visibility.</value>
            public int Visibility
            {
                get{ return _Visibility; }
                set{ _Visibility = value;}
            }


			/// <summary>
			/// Component Id
			/// </summary>
			public int CategoryId
			{
				get {return _CategoryId; }
				set {_CategoryId = value;}
			}

			/// <summary>
			/// Component Name
			/// </summary>
			public string CategoryName 
			{
				get {return _CategoryName; }
                set { _CategoryName = value; }
			}

			/// <summary>
			/// Reporter Display Name
			/// </summary>
			public string CreatorDisplayName 

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
久久久噜噜噜久久中文字幕色伊伊 | 成人免费高清视频在线观看| 亚洲女同ⅹxx女同tv| 日韩一卡二卡三卡国产欧美| 91伊人久久大香线蕉| 久久精品国产精品亚洲精品| 亚洲人成精品久久久久久| 久久精品综合网| 日韩欧美国产系列| 欧美三级电影在线看| 成人影视亚洲图片在线| 韩国av一区二区三区四区| 亚洲国产精品久久人人爱| 自拍偷拍欧美激情| 久久精品在线观看| 欧美va亚洲va香蕉在线| 在线电影欧美成精品| 在线观看欧美黄色| 91亚洲大成网污www| 国产白丝精品91爽爽久久| 欧美天堂一区二区三区| www.亚洲国产| 成人综合在线网站| 顶级嫩模精品视频在线看| 久久成人免费网| 日本中文字幕一区| 日本视频一区二区三区| 日韩在线一区二区| 日韩国产欧美在线视频| 亚洲成在人线免费| 亚洲图片一区二区| 性做久久久久久| 亚洲国产视频a| 亚洲国产视频直播| 亚洲国产综合视频在线观看| 亚洲欧美日韩国产综合| 一区二区三区丝袜| 亚洲国产乱码最新视频| 亚洲制服欧美中文字幕中文字幕| 亚洲男女一区二区三区| 亚洲欧洲制服丝袜| 亚洲综合另类小说| 亚洲aⅴ怡春院| 天堂影院一区二区| 蜜桃视频第一区免费观看| 久久精品国产一区二区三区免费看| 奇米在线7777在线精品| 美国三级日本三级久久99| 久久激五月天综合精品| 国产一区二区h| 成人va在线观看| 色先锋资源久久综合| 欧美性三三影院| 日韩午夜精品电影| 国产喷白浆一区二区三区| 中文字幕一区二区三区在线观看| 亚洲天堂2014| 首页国产欧美久久| 精品中文字幕一区二区小辣椒| 激情久久久久久久久久久久久久久久| 国产一区二区在线视频| 成人美女在线视频| 欧美在线不卡一区| 精品久久久久久久久久久久久久久 | 亚洲 欧美综合在线网络| 婷婷久久综合九色综合伊人色| 美女mm1313爽爽久久久蜜臀| 国产suv精品一区二区三区| 色婷婷精品大在线视频| 91精品免费观看| 国产人妖乱国产精品人妖| 亚洲激情校园春色| 美女mm1313爽爽久久久蜜臀| 成人性色生活片免费看爆迷你毛片| aaa欧美大片| 日韩一区二区在线看| 中文字幕久久午夜不卡| 亚洲国产精品一区二区www | 日韩一区二区在线免费观看| 日韩欧美电影在线| 国产精品女主播av| 婷婷综合另类小说色区| 国产乱码字幕精品高清av| 91丝袜呻吟高潮美腿白嫩在线观看| 欧美精品乱码久久久久久按摩| 久久综合精品国产一区二区三区 | 欧美性受xxxx黑人xyx性爽| 日韩一区二区三区四区五区六区| 国产精品久久久久久一区二区三区 | 亚洲欧洲www| 免费人成黄页网站在线一区二区| 成人精品免费视频| 欧美一区二区三区四区五区| 亚洲欧洲99久久| 激情综合网激情| 欧美色综合网站| 亚洲国产高清在线观看视频| 蜜桃av噜噜一区| 欧美性高清videossexo| 国产精品蜜臀在线观看| 久久99热国产| 欧美日韩www| 亚洲日本一区二区三区| 国产乱码精品一区二区三| 91麻豆精品国产无毒不卡在线观看| 欧美国产一区二区| 久久激情五月激情| 欧美日韩aaaaaa| 亚洲欧美一区二区三区孕妇| 国产一区91精品张津瑜| 欧美高清视频在线高清观看mv色露露十八| 亚洲欧洲www| 国产不卡视频在线观看| 九九九久久久精品| 日本久久精品电影| 日本一区二区视频在线观看| 卡一卡二国产精品| 欧美日韩激情一区二区| 亚洲欧美一区二区久久| 国产成人亚洲综合a∨婷婷图片| 日韩精品一区二区三区四区视频| 婷婷成人综合网| 欧美视频三区在线播放| 亚洲综合色自拍一区| 在线观看一区二区视频| 亚洲精品高清在线观看| 91亚洲大成网污www| 亚洲欧洲日产国码二区| av亚洲精华国产精华| 国产精品久久久久一区| 不卡影院免费观看| 综合中文字幕亚洲| av成人免费在线观看| 成人免费一区二区三区在线观看 | 欧美色图激情小说| 亚洲一线二线三线视频| 在线欧美一区二区| 亚洲一区二区四区蜜桃| 欧美亚洲图片小说| 午夜天堂影视香蕉久久| 欧美理论电影在线| 人人超碰91尤物精品国产| 欧美一区在线视频| 老司机精品视频一区二区三区| 日韩一区二区免费高清| 久久精品国产成人一区二区三区| 精品国产乱码久久久久久影片| 蜜桃久久av一区| 久久久久久久久蜜桃| 丁香婷婷综合色啪| 亚洲欧美日韩中文字幕一区二区三区| 99re8在线精品视频免费播放| 一个色综合av| 欧美一级精品在线| 国产乱码字幕精品高清av | 激情综合亚洲精品| 久久久美女艺术照精彩视频福利播放| 国产精品性做久久久久久| 国产精品麻豆一区二区| 欧美在线视频日韩| 免费观看一级欧美片| 国产亚洲成aⅴ人片在线观看 | 亚洲麻豆国产自偷在线| 91.麻豆视频| 国产盗摄一区二区| 亚洲欧美中日韩| 欧美三级在线播放| 国产一区二区三区香蕉| 国产精品二区一区二区aⅴ污介绍| 91成人在线免费观看| 日韩精品成人一区二区三区| 久久在线免费观看| 色八戒一区二区三区| 青椒成人免费视频| 国产精品欧美一区二区三区| 欧美三级日本三级少妇99| 国产久卡久卡久卡久卡视频精品| 亚洲丝袜制服诱惑| 欧美一区日韩一区| 97国产一区二区| 美女国产一区二区三区| 中文字幕在线不卡国产视频| 欧美日本一道本在线视频| 国产成人av电影免费在线观看| 亚洲综合视频网| 国产欧美精品一区aⅴ影院| 欧美日韩一级视频| 成人福利视频在线| 麻豆成人久久精品二区三区小说| 综合分类小说区另类春色亚洲小说欧美| 欧美久久免费观看| 99精品欧美一区二区三区综合在线| 天天综合网天天综合色 | 精品一区二区三区在线播放视频| 国产精品久久久久久久岛一牛影视| 欧美电影在线免费观看| 91麻豆蜜桃一区二区三区| 国产精品99久久久久久久女警 | 色一情一伦一子一伦一区| 国产一区二区三区在线观看免费|