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

View File

@@ -1,4 +1,4 @@
namespace ApplicationCore.Interfaces
namespace Microsoft.eShopWeb.ApplicationCore.Interfaces
{
public interface IAggregateRoot
{ }

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.

View File

@@ -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
{

View File

@@ -1,7 +1,7 @@
using System.Collections.Generic;
using System.Threading.Tasks;
namespace ApplicationCore.Interfaces
namespace Microsoft.eShopWeb.ApplicationCore.Interfaces
{
public interface IBasketService
{

View File

@@ -1,6 +1,6 @@
using System.Threading.Tasks;
namespace ApplicationCore.Interfaces
namespace Microsoft.eShopWeb.ApplicationCore.Interfaces
{
public interface IEmailSender

View File

@@ -1,6 +1,6 @@
using System.Security.Principal;
namespace ApplicationCore.Interfaces
namespace Microsoft.eShopWeb.ApplicationCore.Interfaces
{
public interface IIdentityParser<T>
{

View File

@@ -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>

View File

@@ -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
{

View File

@@ -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
{

View File

@@ -2,7 +2,7 @@
using System.Collections.Generic;
using System.Linq.Expressions;
namespace ApplicationCore.Interfaces
namespace Microsoft.eShopWeb.ApplicationCore.Interfaces
{
public interface ISpecification<T>
{

View File

@@ -1,4 +1,4 @@
namespace ApplicationCore.Interfaces
namespace Microsoft.eShopWeb.ApplicationCore.Interfaces
{
public interface IUriComposer
{