[MyConfig] Refactor retrieving settings

Issue #2 resolved
Cesar Oliveira repo owner created an issue

Settings can be retrieved one of two ways: 1. Programmatically, using new ConfigurationManager<>(assemblyName) 2. Using a section from app.config

However the way we retrieve settings is different for each. For 1, it's via instance.GetSettings() and for 2 we call .Settings()

We should separate these two out. Maybe into different classes.

Comments (1)

  1. Cesar Oliveira reporter

    Fixed issue #2 - Refactor retrieving settings

    Removed the static method to retrieve settings and also the support for getting configuration information from MyConfigSection

    → <<cset f9c94c1f1be2>>

  2. Log in to comment