Standardize namespaces to all be under the Microsoft.eShopOnWeb namespace and update default namespaces. (#102)

This commit is contained in:
Jeremy Hutchinson
2018-06-05 08:52:54 -04:00
committed by Steve Smith
parent 8bf2a7ade1
commit f953495e38
136 changed files with 342 additions and 335 deletions
@@ -1,4 +1,4 @@
namespace ApplicationCore.Interfaces
namespace Microsoft.eShopWeb.ApplicationCore.Interfaces
{
public interface IAggregateRoot
{ }
+1 -1
View File
@@ -1,4 +1,4 @@
namespace ApplicationCore.Interfaces
namespace Microsoft.eShopWeb.ApplicationCore.Interfaces
{
/// <summary>
/// This type eliminates the need to depend directly on the ASP.NET Core logging types.
@@ -2,7 +2,7 @@
using System.Collections.Generic;
using System.Threading.Tasks;
namespace ApplicationCore.Interfaces
namespace Microsoft.eShopWeb.ApplicationCore.Interfaces
{
public interface IAsyncRepository<T> where T : BaseEntity
{
@@ -1,7 +1,7 @@
using System.Collections.Generic;
using System.Threading.Tasks;
namespace ApplicationCore.Interfaces
namespace Microsoft.eShopWeb.ApplicationCore.Interfaces
{
public interface IBasketService
{
@@ -1,6 +1,6 @@
using System.Threading.Tasks;
namespace ApplicationCore.Interfaces
namespace Microsoft.eShopWeb.ApplicationCore.Interfaces
{
public interface IEmailSender
@@ -1,6 +1,6 @@
using System.Security.Principal;
namespace ApplicationCore.Interfaces
namespace Microsoft.eShopWeb.ApplicationCore.Interfaces
{
public interface IIdentityParser<T>
{
@@ -1,7 +1,7 @@
using ApplicationCore.Entities.OrderAggregate;
using Microsoft.eShopWeb.ApplicationCore.Entities.OrderAggregate;
using System.Threading.Tasks;
namespace ApplicationCore.Interfaces
namespace Microsoft.eShopWeb.ApplicationCore.Interfaces
{
public interface IOrderRepository : IRepository<Order>, IAsyncRepository<Order>
@@ -1,7 +1,7 @@
using ApplicationCore.Entities.OrderAggregate;
using Microsoft.eShopWeb.ApplicationCore.Entities.OrderAggregate;
using System.Threading.Tasks;
namespace ApplicationCore.Interfaces
namespace Microsoft.eShopWeb.ApplicationCore.Interfaces
{
public interface IOrderService
{
@@ -1,7 +1,7 @@
using Microsoft.eShopWeb.ApplicationCore.Entities;
using System.Collections.Generic;
namespace ApplicationCore.Interfaces
namespace Microsoft.eShopWeb.ApplicationCore.Interfaces
{
public interface IRepository<T> where T : BaseEntity
{
@@ -2,7 +2,7 @@
using System.Collections.Generic;
using System.Linq.Expressions;
namespace ApplicationCore.Interfaces
namespace Microsoft.eShopWeb.ApplicationCore.Interfaces
{
public interface ISpecification<T>
{
@@ -1,4 +1,4 @@
namespace ApplicationCore.Interfaces
namespace Microsoft.eShopWeb.ApplicationCore.Interfaces
{
public interface IUriComposer
{