Skip to content

Commit f037a7e

Browse files
authored
Merge pull request #3 from synboxdev/Development
Completely replaced AutoMapper and MediatR and updated remaining NuGe…
2 parents 3b6be55 + e434684 commit f037a7e

File tree

103 files changed

+556
-568
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

103 files changed

+556
-568
lines changed

Hestia.Access/Hestia.Access.csproj

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,9 @@
66
<Nullable>enable</Nullable>
77
</PropertyGroup>
88

9-
<ItemGroup>
10-
<PackageReference Include="MediatR" Version="12.4.1" />
11-
</ItemGroup>
12-
139
<ItemGroup>
1410
<ProjectReference Include="..\Hestia.Domain\Hestia.Domain.csproj" />
11+
<ProjectReference Include="..\Hestia.Mediator\Hestia.Mediator.csproj" />
1512
</ItemGroup>
1613

1714
</Project>

Hestia.Access/Requests/Authentication/Commands/CreateTokenLog/CreateOrUpdateTokenLogCommand.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
using MediatR;
1+
using Hestia.Mediator.Infrastructure.Messaging;
2+
using Hestia.Mediator.Infrastructure.Types;
23

34
namespace Hestia.Access.Requests.Authentication.Commands.CreateTokenLog;
45

Hestia.Access/Requests/Product/Commands/CreateProduct/CreateProductCommand.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
using MediatR;
1+
using Hestia.Mediator.Infrastructure.Messaging;
22

33
namespace Hestia.Access.Requests.Product.Commands.CreateProduct;
44

Hestia.Access/Requests/Product/Commands/DeleteProduct/DeleteProductCommand.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
using MediatR;
1+
using Hestia.Mediator.Infrastructure.Messaging;
22

33
namespace Hestia.Access.Requests.Product.Commands.DeleteProduct;
44

Hestia.Access/Requests/Product/Commands/UpdateProduct/UpdateProductCommand.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
using MediatR;
1+
using Hestia.Mediator.Infrastructure.Messaging;
22

33
namespace Hestia.Access.Requests.Product.Commands.UpdateProduct;
44

Hestia.Access/Requests/Product/Queries/GetExisting/GetExistingProductByCompositeIdQuery.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
using MediatR;
1+
using Hestia.Mediator.Infrastructure.Messaging;
22

33
namespace Hestia.Access.Requests.Product.Queries.GetExisting;
44

Hestia.Access/Requests/Product/Queries/GetExisting/GetExistingProductByExternalIdQuery.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
using MediatR;
1+
using Hestia.Mediator.Infrastructure.Messaging;
22

33
namespace Hestia.Access.Requests.Product.Queries.GetExisting;
44

Hestia.Access/Requests/Product/Queries/GetExisting/GetExistingProductByIdQuery.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
using MediatR;
1+
using Hestia.Mediator.Infrastructure.Messaging;
22

33
namespace Hestia.Access.Requests.Product.Queries.GetExisting;
44

Hestia.Access/Requests/Product/Queries/GetExisting/GetExistingProductByUserQuery.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
using MediatR;
1+
using Hestia.Mediator.Infrastructure.Messaging;
22

33
namespace Hestia.Access.Requests.Product.Queries.GetExisting;
44

Hestia.Access/Requests/Shared/ExecuteSaveChangesAsync.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
using MediatR;
1+
using Hestia.Mediator.Infrastructure.Messaging;
2+
using Hestia.Mediator.Infrastructure.Types;
23

34
namespace Hestia.Access.Requests.Shared;
45

0 commit comments

Comments
 (0)