コード例 #1
0
ファイル: Global.asax.cs プロジェクト: gnomix/T.A.L.K.
 protected void Application_Start(object sender, EventArgs e)
 {
     log4net.Config.XmlConfigurator.Configure();
     log.Debug("CTI Web Services Starting...");
     InitCache();
     if (System.Web.Configuration.WebConfigurationManager.AppSettings.Get("CallsInDatabase") == "true")
     {
         log.Debug("Initialize Codif database...");
         codif = new CodifEntities();
         
     }
 }
コード例 #2
0
 public TalkCodificationProvider()
 {
     _codif = new CodifEntities("name=" + connectionStringName);
 }