Renamed the project from DebtMgr to eJay

This commit is contained in:
Andre Beging
2019-01-06 16:12:11 +01:00
parent 5887b27aaa
commit c9ca3598e7
34 changed files with 107 additions and 78 deletions

View File

@@ -1,4 +1,4 @@
using DebtMgr.Model;
using eJay.Model;
using GalaSoft.MvvmLight;
using GalaSoft.MvvmLight.Command;
using SQLiteNetExtensions.Extensions;
@@ -8,7 +8,7 @@ using System.Globalization;
using System.Linq;
using System.Windows;
namespace DebtMgr.ViewModel.Dialogs
namespace eJay.ViewModel.Dialogs
{
public class AddTransactionViewModel : ViewModelBase
{

View File

@@ -1,14 +1,14 @@
using System;
using System.Linq;
using System.Windows;
using DebtMgr.Model;
using eJay.Model;
using GalaSoft.MvvmLight;
using GalaSoft.MvvmLight.Command;
using Microsoft.Win32;
using SQLite.Net;
using SQLite.Net.Platform.Generic;
namespace DebtMgr.ViewModel.Dialogs
namespace eJay.ViewModel.Dialogs
{
public class DatabaseSelectorDialogViewModel : ViewModelBase
{

View File

@@ -1,11 +1,11 @@
using System;
using System.Globalization;
using DebtMgr.Model;
using eJay.Model;
using GalaSoft.MvvmLight;
using GalaSoft.MvvmLight.Command;
using SQLiteNetExtensions.Extensions;
namespace DebtMgr.ViewModel.Dialogs
namespace eJay.ViewModel.Dialogs
{
public class EditTransactionDialogViewModel : ViewModelBase
{

View File

@@ -1,10 +1,10 @@
using System;
using System.Windows;
using DebtMgr.Model;
using eJay.Model;
using GalaSoft.MvvmLight;
using GalaSoft.MvvmLight.Command;
namespace DebtMgr.ViewModel.Dialogs
namespace eJay.ViewModel.Dialogs
{
public class NewPersonDialogViewModel : ViewModelBase
{