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

📄 webproviders.cs

📁 1、用SQL查询器打开install目录下的dooogo.sql运行之后创建数据库dooogo。 2、然后打开web.config修改 <DbProvider type="Club.Fram
💻 CS
字号:
using System;

namespace Club.Framework.Providers
{
	/// <summary>
	/// Summary description for BlogProviders.
	/// </summary>
	[Serializable]
	public class WebProviders
	{
		public WebProviders()
		{

		}

		private EmailProviderConfiguration _emailProvider;
		public EmailProviderConfiguration EmailProvider
		{
			get {return this._emailProvider;}
			set {this._emailProvider = value;}
		}

		private DTOProviderConfiguration _dTOProvider;
		public DTOProviderConfiguration DTOProvider
		{
			get {return this._dTOProvider;}
			set {this._dTOProvider = value;}
		}

		private DbProviderConfiguration _dbProvider;
		public DbProviderConfiguration DbProvider
		{
			get {return this._dbProvider;}
			set {this._dbProvider = value;}
		}
		private UrlFormatProviderConfiguration _urlFormatProvider;
		public UrlFormatProviderConfiguration UrlFormatProvider
		{
			get {return this._urlFormatProvider;}
			set {this._urlFormatProvider = value;}
		}
		private JsFormatProviderConfiguration _jsFormatProvider;
		public JsFormatProviderConfiguration JsFormatProvider
		{
			get {return this._jsFormatProvider;}
			set {this._jsFormatProvider = value;}
		}
	}
}

⌨️ 快捷键说明

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