Commit ac17b5e
Changed files (32)
product
Boot
boot
container
Presentation
Model
Presenters
Winforms
Service
Infrastructure
product/Boot/boot/container/registration/wire_up_the_infrastructure_in_to_the.cs
@@ -7,7 +7,7 @@ using Gorilla.Commons.Infrastructure.Threading;
using Gorilla.Commons.Infrastructure.Transactions;
using Gorilla.Commons.Utility.Core;
using MoMoney.Presentation.Model.Projects;
-using MoMoney.Presentation.Presenters.Commands;
+using MoMoney.Presentation.Presenters;
using MoMoney.Service.Infrastructure.Eventing;
using MoMoney.Service.Infrastructure.Threading;
using MoMoney.Service.Infrastructure.Updating;
product/Boot/boot/container/registration/wire_up_the_views_in_to_the.cs
@@ -5,7 +5,6 @@ using Gorilla.Commons.Utility.Core;
using MoMoney.Presentation.Views;
using MoMoney.Presentation.Views.billing;
using MoMoney.Presentation.Views.dialogs;
-using MoMoney.Presentation.Views.income;
using MoMoney.Presentation.Views.Menu;
using MoMoney.Presentation.Views.Navigation;
using MoMoney.Presentation.Views.Shell;
product/Boot/boot/start_the_application.cs
@@ -2,6 +2,7 @@ using Gorilla.Commons.Infrastructure;
using Gorilla.Commons.Infrastructure.Threading;
using Gorilla.Commons.Utility.Core;
using MoMoney.Modules.Core;
+using MoMoney.Service.Infrastructure.Threading;
namespace MoMoney.boot
{
product/Boot/Modules/Core/LoadPresentationModulesCommand.cs
@@ -1,7 +1,7 @@
-using Gorilla.Commons.Infrastructure.Threading;
using Gorilla.Commons.Utility.Core;
using Gorilla.Commons.Utility.Extensions;
using MoMoney.Presentation;
+using MoMoney.Service.Infrastructure.Threading;
namespace MoMoney.Modules.Core
{
product/Boot/Modules/Core/LoadPresentationModulesCommandSpecs.cs
@@ -1,8 +1,8 @@
using developwithpassion.bdd.contexts;
-using Gorilla.Commons.Infrastructure.Threading;
using Gorilla.Commons.Testing;
using Gorilla.Commons.Utility.Core;
using MoMoney.Presentation;
+using MoMoney.Service.Infrastructure.Threading;
namespace MoMoney.Modules.Core
{
product/Presentation/Core/ApplicationEnvironment.cs
@@ -1,5 +1,5 @@
using System.Windows.Forms;
-using Gorilla.Commons.Infrastructure.Threading;
+using MoMoney.Service.Infrastructure.Threading;
namespace MoMoney.Presentation.Core
{
product/Presentation/Model/Menu/MenuItemBuilder.cs
@@ -1,10 +1,10 @@
using System;
using Gorilla.Commons.Infrastructure.Container;
-using Gorilla.Commons.Infrastructure.Threading;
using Gorilla.Commons.Utility.Core;
using MoMoney.Presentation.Winforms.Keyboard;
using MoMoney.Presentation.Winforms.Resources;
using MoMoney.Service.Infrastructure.Eventing;
+using MoMoney.Service.Infrastructure.Threading;
namespace MoMoney.Presentation.Model.Menu
{
product/Presentation/Model/Menu/ToolBarItemBuilder.cs
@@ -1,10 +1,10 @@
using System;
using System.Windows.Forms;
using Gorilla.Commons.Infrastructure.Container;
-using Gorilla.Commons.Infrastructure.Threading;
using Gorilla.Commons.Utility.Core;
using MoMoney.Presentation.Winforms.Resources;
using MoMoney.Service.Infrastructure.Eventing;
+using MoMoney.Service.Infrastructure.Threading;
namespace MoMoney.Presentation.Model.Menu
{
product/Presentation/Presenters/AddBillPaymentPresenter.cs
@@ -3,7 +3,6 @@ using MoMoney.DTO;
using MoMoney.Presentation.Core;
using MoMoney.Presentation.Views.billing;
using MoMoney.Service.Contracts.Application;
-using ICommandPump=MoMoney.Presentation.Presenters.Commands.ICommandPump;
namespace MoMoney.Presentation.Presenters.billing
{
product/Presentation/Presenters/AddCompanyPresenter.cs
@@ -3,7 +3,6 @@ using MoMoney.DTO;
using MoMoney.Presentation.Core;
using MoMoney.Presentation.Views;
using MoMoney.Service.Contracts.Application;
-using ICommandPump=MoMoney.Presentation.Presenters.Commands.ICommandPump;
namespace MoMoney.Presentation.Presenters
{
product/Presentation/Presenters/AddCompanyPresenterSpecs.cs
@@ -3,7 +3,6 @@ using Gorilla.Commons.Testing;
using MoMoney.DTO;
using MoMoney.Presentation.Views;
using MoMoney.Service.Contracts.Application;
-using ICommandPump=MoMoney.Presentation.Presenters.Commands.ICommandPump;
namespace MoMoney.Presentation.Presenters
{
product/Presentation/Presenters/AddIncomeTaskPane.cs
@@ -1,4 +1,3 @@
-using MoMoney.Presentation.Presenters.income;
using MoMoney.Presentation.Presenters.Navigation;
using MoMoney.Presentation.Winforms.Resources;
using XPExplorerBar;
product/Presentation/Presenters/AddNewIncomePresenter.cs
@@ -1,11 +1,10 @@
using System.Collections.Generic;
using MoMoney.DTO;
using MoMoney.Presentation.Core;
-using MoMoney.Presentation.Presenters.Commands;
-using MoMoney.Presentation.Views.income;
+using MoMoney.Presentation.Views;
using MoMoney.Service.Contracts.Application;
-namespace MoMoney.Presentation.Presenters.income
+namespace MoMoney.Presentation.Presenters
{
public interface IAddNewIncomePresenter : IContentPresenter
{
product/Presentation/Presenters/AddNewIncomePresenterSpecs.cs
@@ -2,9 +2,8 @@ using System.Collections.Generic;
using developwithpassion.bdd.contexts;
using Gorilla.Commons.Testing;
using MoMoney.DTO;
-using MoMoney.Presentation.Views.income;
+using MoMoney.Presentation.Views;
using MoMoney.Service.Contracts.Application;
-using ICommandPump=MoMoney.Presentation.Presenters.Commands.ICommandPump;
namespace MoMoney.Presentation.Presenters.income
{
product/Presentation/Presenters/CheckForUpdatesPresenterSpecs.cs
@@ -8,7 +8,6 @@ using MoMoney.Presentation.Views.updates;
using MoMoney.Service.Contracts.Infrastructure.Updating;
using MoMoney.Service.Infrastructure.Updating;
using MoMoney.Tasks.infrastructure.updating;
-using ICommandPump=MoMoney.Presentation.Presenters.Commands.ICommandPump;
namespace MoMoney.Presentation.Presenters.updates
{
product/Presentation/Presenters/CommandFactory.cs
@@ -1,7 +1,8 @@
using Gorilla.Commons.Infrastructure.Threading;
using Gorilla.Commons.Utility.Core;
+using MoMoney.Presentation.Presenters.Commands;
-namespace MoMoney.Presentation.Presenters.Commands
+namespace MoMoney.Presentation.Presenters
{
public interface ICommandFactory
{
product/Presentation/Presenters/CommandPump.cs
@@ -1,8 +1,8 @@
using Gorilla.Commons.Infrastructure.Container;
-using Gorilla.Commons.Infrastructure.Threading;
using Gorilla.Commons.Utility.Core;
+using MoMoney.Service.Infrastructure.Threading;
-namespace MoMoney.Presentation.Presenters.Commands
+namespace MoMoney.Presentation.Presenters
{
public interface ICommandPump
{
product/Presentation/Presenters/ProcessQueryCommand.cs
@@ -2,7 +2,7 @@ using System;
using Gorilla.Commons.Infrastructure.Threading;
using Gorilla.Commons.Utility.Core;
-namespace MoMoney.Presentation.Presenters.Commands
+namespace MoMoney.Presentation.Presenters
{
public interface IProcessQueryCommand<T> : IParameterizedCommand<ICallback<T>>
{
product/Presentation/Presenters/RunPresenterCommand.cs
@@ -1,5 +1,5 @@
-using Gorilla.Commons.Infrastructure.Threading;
using MoMoney.Presentation.Core;
+using MoMoney.Service.Infrastructure.Threading;
namespace MoMoney.Presentation.Presenters
{
product/Presentation/Presenters/RunThe.cs
@@ -1,6 +1,6 @@
-using Gorilla.Commons.Infrastructure.Threading;
using Gorilla.Commons.Utility.Core;
using MoMoney.Presentation.Core;
+using MoMoney.Service.Infrastructure.Threading;
namespace MoMoney.Presentation.Presenters.Commands
{
product/Presentation/Presenters/RunTheSpecs.cs
@@ -1,8 +1,8 @@
using developwithpassion.bdd.contexts;
-using Gorilla.Commons.Infrastructure.Threading;
using Gorilla.Commons.Testing;
using MbUnit.Framework;
using MoMoney.Presentation.Core;
+using MoMoney.Service.Infrastructure.Threading;
namespace MoMoney.Presentation.Presenters.Commands
{
product/Presentation/Presenters/ViewAllBillsPresenter.cs
@@ -3,7 +3,6 @@ using MoMoney.DTO;
using MoMoney.Presentation.Core;
using MoMoney.Presentation.Views;
using MoMoney.Service.Contracts.Application;
-using ICommandPump=MoMoney.Presentation.Presenters.Commands.ICommandPump;
namespace MoMoney.Presentation.Presenters.billing
{
product/Presentation/Presenters/ViewIncomeHistoryPresenter.cs
@@ -1,11 +1,10 @@
using System.Collections.Generic;
using MoMoney.DTO;
using MoMoney.Presentation.Core;
-using MoMoney.Presentation.Presenters.Commands;
-using MoMoney.Presentation.Views.income;
+using MoMoney.Presentation.Views;
using MoMoney.Service.Contracts.Application;
-namespace MoMoney.Presentation.Presenters.income
+namespace MoMoney.Presentation.Presenters
{
public interface IViewIncomeHistoryPresenter : IContentPresenter
{
product/Presentation/Views/IAddNewIncomeView.cs
@@ -1,10 +1,10 @@
using System.Collections.Generic;
using Gorilla.Commons.Utility.Core;
using MoMoney.DTO;
-using MoMoney.Presentation.Presenters.income;
+using MoMoney.Presentation.Presenters;
using MoMoney.Presentation.Views.Core;
-namespace MoMoney.Presentation.Views.income
+namespace MoMoney.Presentation.Views
{
public interface IAddNewIncomeView : IDockedContentView,
IView<IAddNewIncomePresenter>,
product/Presentation/Views/IViewIncomeHistory.cs
@@ -1,10 +1,10 @@
using System.Collections.Generic;
using Gorilla.Commons.Utility.Core;
using MoMoney.DTO;
-using MoMoney.Presentation.Presenters.income;
+using MoMoney.Presentation.Presenters;
using MoMoney.Presentation.Views.Core;
-namespace MoMoney.Presentation.Views.income
+namespace MoMoney.Presentation.Views
{
public interface IViewIncomeHistory : IDockedContentView,
IView<IViewIncomeHistoryPresenter>,
product/Presentation/Winforms/Views/AddNewIncomeView.cs
@@ -2,9 +2,9 @@ using System;
using System.Collections.Generic;
using Gorilla.Commons.Utility.Extensions;
using MoMoney.DTO;
-using MoMoney.Presentation.Presenters.income;
+using MoMoney.Presentation.Presenters;
+using MoMoney.Presentation.Views;
using MoMoney.Presentation.Views.Core;
-using MoMoney.Presentation.Views.income;
using MoMoney.Presentation.Winforms.Helpers;
using MoMoney.Presentation.Winforms.Krypton;
using MoMoney.Presentation.Winforms.Resources;
product/Presentation/Winforms/Views/ApplicationShell.Designer.cs
@@ -66,8 +66,8 @@ namespace MoMoney.Presentation.Winforms.Views
// ux_status_bar
//
this.ux_status_bar.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
- this.status_bar_label,
- this.status_bar_progress_bar});
+ this.status_bar_progress_bar,
+ this.status_bar_label});
this.ux_status_bar.Location = new System.Drawing.Point(0, 485);
this.ux_status_bar.Name = "ux_status_bar";
this.ux_status_bar.RenderMode = System.Windows.Forms.ToolStripRenderMode.Professional;
product/Presentation/Winforms/Views/ViewAllIncome.cs
@@ -1,8 +1,8 @@
using System.Collections.Generic;
using Gorilla.Commons.Utility.Extensions;
using MoMoney.DTO;
-using MoMoney.Presentation.Presenters.income;
-using MoMoney.Presentation.Views.income;
+using MoMoney.Presentation.Presenters;
+using MoMoney.Presentation.Views;
using MoMoney.Presentation.Winforms.Resources;
namespace MoMoney.Presentation.Winforms.Views
product/Service/Infrastructure/Threading/AsynchronousCommandProcessor.cs
@@ -2,7 +2,6 @@ using System;
using System.Collections.Generic;
using System.Linq.Expressions;
using System.Threading;
-using Gorilla.Commons.Infrastructure.Threading;
using Gorilla.Commons.Utility.Core;
namespace MoMoney.Service.Infrastructure.Threading
product/Service/Infrastructure/Threading/CommandProcessor.cs
@@ -3,7 +3,7 @@ using System.Collections.Generic;
using System.Linq.Expressions;
using Gorilla.Commons.Utility.Core;
-namespace Gorilla.Commons.Infrastructure.Threading
+namespace MoMoney.Service.Infrastructure.Threading
{
public class CommandProcessor : ICommandProcessor
{
product/Service/Infrastructure/Threading/CommandProcessorSpecs.cs
@@ -1,6 +1,7 @@
using developwithpassion.bdd.contexts;
using Gorilla.Commons.Testing;
using Gorilla.Commons.Utility.Core;
+using MoMoney.Service.Infrastructure.Threading;
namespace Gorilla.Commons.Infrastructure.Threading
{
product/Service/Infrastructure/Threading/ICommandProcessor.cs
@@ -2,7 +2,7 @@ using System;
using System.Linq.Expressions;
using Gorilla.Commons.Utility.Core;
-namespace Gorilla.Commons.Infrastructure.Threading
+namespace MoMoney.Service.Infrastructure.Threading
{
public interface ICommandProcessor : ICommand
{