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

📄 sysmsg.cs

📁 某个公司需要维持良好的客户关系
💻 CS
字号:
using System;
using System.Reflection;
using System.Configuration;
using CRM.IDAL;
namespace CRM.DALFactory
{
	/// <summary>
	/// SysMsg 的摘要说明。
	/// </summary>
	public class SysMsg
	{
		
			public static ISysMsg Create() 
			{

				/// Look up the DAL implementation we should be using
				string path = System.Configuration.ConfigurationSettings.AppSettings["WebDAL"];
				string className = path + ".SysMsg";

				// Using the evidence given in the config file load the appropriate assembly and class
				return (ISysMsg)Assembly.Load(path).CreateInstance(className);
			}
		
	}
}

⌨️ 快捷键说明

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