Beispiel #1
0
 public DailyTxnConverterBase2(PeriodRowVM periodRowVM)
 {
     _row      = periodRowVM;
     _rntDir   = _row.MainWindow.AppArgs;
     _rntCache = _row.MainWindow.RntCache;
     _byfCache = _row.MainWindow.ByfCache;
     _client   = _row.MainWindow.ByfServer.Client;
 }
Beispiel #2
0
        protected override async void OnWindowLoaded()
        {
            RntCache.RefillFrom(AppArgs);
            await ByfServer.SetURL(Default.ServerURL);

            if (ByfServer.IsOnline)
            {
                await ByfCache.RefillFromServer(ByfServer);
            }
        }
 public DailyTxnConverterBase(MainWindowVM mainWindowVM)
 {
     _rntDir   = mainWindowVM.AppArgs;
     _rntCache = mainWindowVM.RntCache;
     _byfCache = mainWindowVM.ByfCache;
 }