⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 defaultvalues.cs

📁 BugNET is an issue tracking and project issue management solution built using the ASP.NET web applic
💻 CS
字号:
using System;
using System.Data.SqlTypes;

namespace BugNET.BusinessLogicLayer {

    /// <summary>
    /// The DefaultValues class contains static properties which represent
    /// the minimum values for database identity fields.
    /// </summary>
	public class DefaultValues {

        /// <summary>
        /// Gets the category id min value.
        /// </summary>
        /// <returns></returns>
        public static int GetCategoryIdMinValue() {
            return (0);
        }

        /// <summary>
        /// Gets the date time min value.
        /// </summary>
        /// <returns></returns>
        public static DateTime GetDateTimeMinValue() {
            DateTime MinValue= (DateTime)SqlDateTime.MinValue;
            MinValue.AddYears(1);
            return (MinValue);
        }

        /// <summary>
        /// Gets the custom field id min value.
        /// </summary>
        /// <returns></returns>
        public static int GetCustomFieldIdMinValue() {
            return (0);
        }

        /// <summary>
        /// Gets the issue id min value.
        /// </summary>
        /// <returns></returns>
        public static int GetIssueIdMinValue() {
            return (0);
        }

        /// <summary>
        /// Gets the issue comment id min value.
        /// </summary>
        /// <returns></returns>
        public static int GetIssueCommentIdMinValue() {
            return (0);
        }

        /// <summary>
        /// Gets the issue attachment id min value.
        /// </summary>
        /// <returns></returns>
		public static int GetIssueAttachmentIdMinValue() 
		{
			return (0);
		}

        /// <summary>
        /// Gets the issue notification id min value.
        /// </summary>
        /// <returns></returns>
        public static int GetIssueNotificationIdMinValue() 
		{
            return (0);
        }

        /// <summary>
        /// Ges the project notification id min value.
        /// </summary>
        /// <returns></returns>
        public static int GetProjectNotificationIdMinValue()
        {
            return (0);
        }

        /// <summary>
        /// Gets the milestone id min value.
        /// </summary>
        /// <returns></returns>
        public static int GetMilestoneIdMinValue() {
            return (0);
        }

        /// <summary>
        /// Gets the priority id min value.
        /// </summary>
        /// <returns></returns>
        public static int GetPriorityIdMinValue() {
            return (0);
        }

        /// <summary>
        /// Gets the project id min value.
        /// </summary>
        /// <returns></returns>
        public static int GetProjectIdMinValue() {
            return (0);
        }

        /// <summary>
        /// Gets the status id min value.
        /// </summary>
        /// <returns></returns>
        public static int GetStatusIdMinValue() {
            return (0);
        }

        /// <summary>
        /// Gets the user id min value.
        /// </summary>
        /// <returns></returns>
        public static int GetUserIdMinValue() {
            return (0);
        }

        /// <summary>
        /// Gets the query id min value.
        /// </summary>
        /// <returns></returns>
        public static int GetQueryIdMinValue() {
            return (0);
        }


  }
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -