Пример #1
0
        private void Save()
        {
            this.repository.Clear();
            var state = new CashpointState {
                Bank = this.cashpoint.Banknotes.ToDictionary(pair => pair.Key, pair => pair.Value)
            };

            this.repository.Save(state);
        }
Пример #2
0
 private void Save()
 {
     this.repository.Clear();
     var state = new CashpointState { Bank = this.cashpoint.Banknotes.ToDictionary(pair => pair.Key, pair => pair.Value) };
     this.repository.Save(state);
 }