Skip to content

Commit

Permalink
Update sharedkernel reference
Browse files Browse the repository at this point in the history
  • Loading branch information
ardalis committed Apr 27, 2021
1 parent 9841441 commit 62c5c51
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 6 deletions.
2 changes: 1 addition & 1 deletion FrontDesk/src/FrontDesk.Api/FrontDesk.Api.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@
</PackageReference>
<PackageReference Include="Microsoft.VisualStudio.Azure.Containers.Tools.Targets" Version="1.10.9" />
<PackageReference Include="MediatR" Version="9.0.0" />
<PackageReference Include="PluralsightDdd.SharedKernel" Version="1.2.2" />
<PackageReference Include="PluralsightDdd.SharedKernel" Version="2.0.0" />
<PackageReference Include="RabbitMQ.Client" Version="6.2.1" />
<PackageReference Include="SixLabors.ImageSharp" Version="1.0.3" />
<PackageReference Include="Swashbuckle.AspNetCore" Version="6.1.1" />
Expand Down
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
using System;
using PluralsightDdd.SharedKernel;
using MediatR;
using PluralsightDdd.SharedKernel.Interfaces;

namespace FrontDesk.Core.Events.IntegrationEvents
{
// This is fired by the message queue handler when an appointment should
// be marked confirmed. It happens before the appointment is confirmed in
// the model.
public class AppointmentConfirmedAppEvent : BaseDomainEvent
public class AppointmentConfirmedAppEvent : IIntegrationEvent, INotification
{
public AppointmentConfirmedAppEvent() : this(DateTime.Now)
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

namespace FrontDesk.Core.Events.IntegrationEvents
{
public class CreateConfirmationEmailMessage : IApplicationEvent
public class CreateConfirmationEmailMessage : IIntegrationEvent
{
public Guid AppointmentId { get; set; }
public string ClientName { get; set; }
Expand Down
2 changes: 1 addition & 1 deletion FrontDesk/src/FrontDesk.Core/FrontDesk.Core.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<PackageReference Include="Ardalis.GuardClauses" Version="3.1.0" />
<PackageReference Include="Ardalis.Result" Version="3.1.1" />
<PackageReference Include="MediatR" Version="9.0.0" />
<PackageReference Include="PluralsightDdd.SharedKernel" Version="1.2.2" />
<PackageReference Include="PluralsightDdd.SharedKernel" Version="2.0.0" />
</ItemGroup>

<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
<PackageReference Include="Microsoft.Extensions.Logging" Version="5.0.0" />
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="5.0.0" />
<PackageReference Include="Microsoft.Extensions.ObjectPool" Version="5.0.4" />
<PackageReference Include="PluralsightDdd.SharedKernel" Version="1.2.2" />
<PackageReference Include="PluralsightDdd.SharedKernel" Version="2.0.0" />
<PackageReference Include="RabbitMQ.Client" Version="6.2.1" />
<PackageReference Include="SQLite" Version="3.13.0" />
<PackageReference Include="NETStandard.Library" Version="2.0.3" />
Expand Down

0 comments on commit 62c5c51

Please sign in to comment.