Skip to content

Commit 795c786

Browse files
CESARDLCESARDL
authored andcommitted
Renamed IRepository to IAggregateRepository
1 parent 4708b89 commit 795c786

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

src/Services/Ordering/Ordering.Domain/AggregatesModel/BuyerAggregate/IBuyerRepository.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ namespace Microsoft.eShopOnContainers.Services.Ordering.Domain.AggregatesModel.B
77
//This is just the RepositoryContracts or Interface defined at the Domain Layer
88
//as requisite for the Buyer Aggregate
99
public interface IBuyerRepository
10-
:IRepository
10+
:IAggregateRepository
1111
{
1212
Buyer Add(Buyer buyer);
1313

src/Services/Ordering/Ordering.Domain/AggregatesModel/OrderAggregate/IOrderRepository.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ namespace Microsoft.eShopOnContainers.Services.Ordering.Domain.AggregatesModel.O
55
//This is just the RepositoryContracts or Interface defined at the Domain Layer
66
//as requisite for the Order Aggregate
77
public interface IOrderRepository
8-
:IRepository
8+
:IAggregateRepository
99
{
1010
Order Add(Order order);
1111
}

src/Services/Ordering/Ordering.Domain/SeedWork/IRepository.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
namespace Microsoft.eShopOnContainers.Services.Ordering.Domain.Seedwork
22
{
3-
public interface IRepository
3+
public interface IAggregateRepository
44
{
55
IUnitOfWork UnitOfWork { get; }
66
}

0 commit comments

Comments
 (0)