Exemplo n.º 1
0
        internal Object GetConfigurationProperty(string key)
        {
            Dao dao = new Dao();

            return(dao.GetConfigurationProperty(key));
        }
Exemplo n.º 2
0
        internal T GetConfigurationProperty <T>(string key)
        {
            Dao dao = new Dao();

            return(dao.GetConfigurationProperty <T>(key));
        }