Exemplo n.º 1
0
        protected void Page_Load(object sender, EventArgs e)
        {
            //string m_connectionString = ConfigurationManager.ConnectionStrings["ConnectionString"].ToString();
            SQLDataProvider prov = new SQLDataProvider("Some Connection String");

            StationaryLogger.Info("Application is working");
        }
Exemplo n.º 2
0
 public SQLDataProvider(string connString)
 {
     ConnectionString = connString;
     //logger = new StationaryLogger();
     StationaryLogger.Info("Connection String: " + connString);
 }