Skip to content

Commit

Permalink
Tidy-up usings
Browse files Browse the repository at this point in the history
  • Loading branch information
danielmackay committed Jan 2, 2024
1 parent 3b520c2 commit 4e5b810
Show file tree
Hide file tree
Showing 6 changed files with 3 additions and 10 deletions.
5 changes: 2 additions & 3 deletions src/Common/SharedKernel/Domain/Base/AggregateRoot.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
using System.ComponentModel.DataAnnotations.Schema;

using SharedKernel.Domain.Interfaces;
using SharedKernel.Domain.Interfaces;
using System.ComponentModel.DataAnnotations.Schema;

namespace SharedKernel.Domain.Base;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
using Ardalis.GuardClauses;

using SharedKernel.Domain.Base;

namespace Modules.Orders.Domain.Customers;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
using Modules.Orders.Domain.Customers;

using SharedKernel.Domain.Base;

namespace Modules.Orders.Domain.Orders;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
using Ardalis.GuardClauses;

using SharedKernel.Domain.Base;
using SharedKernel.Domain.Exceptions;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
using Ardalis.GuardClauses;

using Modules.Warehouse.Domain.Categories;

using SharedKernel.Domain.Base;
using SharedKernel.Domain.Entities;
using SharedKernel.Domain.Identifiers;
Expand Down Expand Up @@ -63,4 +61,4 @@ public void UpdateSku(Sku sku)
Guard.Against.Null(sku);
Sku = sku;
}
}
}
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
using Ardalis.Specification;

using SharedKernel.Domain.Identifiers;

namespace Modules.Warehouse.Domain.Products;
Expand Down

0 comments on commit 4e5b810

Please sign in to comment.