Exemple #1
0
        internal bool SetConfig(ConfigurationProperty cp)
        {
            Dao dao = new Dao();

            return(dao.SetConfig(cp));
        }
Exemple #2
0
        internal dynamic GetCorpGoals()
        {
            Dao dao = new Dao();

            return(GetConfigurationProperty <List <string> >("Corporate_Goals"));
        }
Exemple #3
0
        internal T GetConfigurationProperty <T>(string key)
        {
            Dao dao = new Dao();

            return(dao.GetConfigurationProperty <T>(key));
        }
Exemple #4
0
        internal Object GetConfigurationProperty(string key)
        {
            Dao dao = new Dao();

            return(dao.GetConfigurationProperty(key));
        }
Exemple #5
0
        internal DataTable GetConfiguration()
        {
            Dao dao = new Dao();

            return(dao.GetConfiguration());
        }