コード例 #1
0
        public HomeController(CurrencyXplorer currencyXplorer, IApplicationEnvironment appEnv)
        {
            launchCounter++;

            _currencyXplorer        = currencyXplorer;
            _applicationEnvironment = appEnv;

            Debug.WriteLine("Entry");
        }
コード例 #2
0
 static void Main(string[] args)
 {
     CurrencyXplorer ce = new CurrencyXplorer();
 }
コード例 #3
0
 public ExportController(CurrencyXplorer currencyExplorer)
 {
     _currencyExplorer = currencyExplorer;
 }
コード例 #4
0
 public ChartController(CurrencyXplorer explorer)
 {
     _currencyXplorer = explorer;
 }
コード例 #5
0
 public SettingsController(CurrencyXplorer explorer)
 {
     _currencyXplorer = explorer;
 }