/// <summary>
 /// Initializes a new instance of the <see cref="ConfigViewModel"/> class.
 /// </summary>
 public ConfigViewModel()
 {
     _delegates = new Delegates.Delegates();
     GetDatabaseInformation();
     ChangeDatabaseCommand = new DelegateCommand <string>(ChangeDatabase);
 }
 /// <summary>
 /// Called when [initialazing].
 /// </summary>
 public void OnInitialazing()
 {
     GetGFijos();
     Delegates = new Delegates.Delegates();
     DeleteSelectedExpenseCommand = new DelegateCommand(DeleteExpense);
 }
 /// <summary>
 /// Called when [initialazing].
 /// </summary>
 public void OnInitialazing()
 {
     Delegates = new Delegates.Delegates();
     GetIncomes();
     DeleteSelectedIncomeCommand = new DelegateCommand(DeleteIncome);
 }
        /// <summary>
        /// Initializes a new instance of the <see cref="StatisticsViewModel"/> class.
        /// </summary>
        public StatisticsViewModel()
        {
            Delegates = new Delegates.Delegates();

            LoadStatistics();
        }
Example #5
0
 /// <summary>
 /// Initializes this instance.
 /// </summary>
 public void Initialize()
 {
     Delegates = new Delegates.Delegates();
     GetActualMonthAmount();
     LoadColumnChartData();
 }