コード例 #1
0
 public mail_template()
 {
     if (siteConfig == null)
     {
         dal = new DAL.mail_template("dt_");
     }
     else
     {
         dal = new DAL.mail_template(siteConfig.sysdatabaseprefix);
     }
 }
コード例 #2
0
ファイル: mail_template.cs プロジェクト: yidane/51wine
 public mail_template()
 {
     dal = new DAL.mail_template(siteConfig.sysdatabaseprefix);
 }
コード例 #3
0
        private readonly Model.siteconfig siteConfig = new BLL.siteconfig().loadConfig(); //获得站点配置信息

        #endregion Fields

        #region Constructors

        public mail_template()
        {
            dal = new DAL.mail_template(siteConfig.sysdatabaseprefix);
        }