Ejemplo n.º 1
0
        public TagHandler(DataCache dataCache, int accountNo)
        {
            DataCache = dataCache;
            using (var core = new StandardBusinessLayer(DataCache))
            {
                core.Connect();
                AccountTags = core.GetAccountTagsByAccountNo(accountNo);
            }

            AccountBalance = DataCache.CalculateAccountBalance(accountNo);

            CreateComboBoxItems();
        }