Skip to content

Commit

Permalink
Rename ApplicationEvents to IntegrationEvents
Browse files Browse the repository at this point in the history
  • Loading branch information
ardalis committed Apr 27, 2021
1 parent e4f336a commit 59dbcf4
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
using System.Threading;
using System.Threading.Tasks;
using FrontDesk.Api.Hubs;
using FrontDesk.Core.Events.ApplicationEvents;
using FrontDesk.Core.Events.IntegrationEvents;
using FrontDesk.Infrastructure.Messaging;
using MediatR;
using Microsoft.AspNetCore.SignalR;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using System;
using PluralsightDdd.SharedKernel;

namespace FrontDesk.Core.Events.ApplicationEvents
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
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
using BlazorShared.Models.Appointment;
using PluralsightDdd.SharedKernel;

namespace FrontDesk.Core.Events.ApplicationEvents
namespace FrontDesk.Core.Events.IntegrationEvents
{
public class AppointmentScheduledAppEvent : BaseDomainEvent
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using System;
using PluralsightDdd.SharedKernel.Interfaces;

namespace FrontDesk.Core.Events.ApplicationEvents
namespace FrontDesk.Core.Events.IntegrationEvents
{
public class CreateConfirmationEmailMessage : IApplicationEvent
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
using System.Threading;
using System.Threading.Tasks;
using Ardalis.GuardClauses;
using FrontDesk.Core.Events.ApplicationEvents;
using FrontDesk.Core.Events.IntegrationEvents;
using FrontDesk.Core.Interfaces;
using FrontDesk.Core.ScheduleAggregate;
using FrontDesk.Core.ScheduleAggregate.Specifications;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
using System.Threading;
using System.Threading.Tasks;
using FrontDesk.Core.Events;
using FrontDesk.Core.Events.ApplicationEvents;
using FrontDesk.Core.Events.IntegrationEvents;
using FrontDesk.Core.Exceptions;
using FrontDesk.Core.Interfaces;
using FrontDesk.Core.ScheduleAggregate.Specifications;
Expand Down
3 changes: 1 addition & 2 deletions FrontDesk/src/FrontDesk.Core/Interfaces/IMessagePublisher.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
using FrontDesk.Core.Events.ApplicationEvents;

using FrontDesk.Core.Events.IntegrationEvents;
namespace FrontDesk.Core.Interfaces
{
public interface IMessagePublisher
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
using System.Text;
using System.Text.Json;
using Ardalis.GuardClauses;
using FrontDesk.Core.Events.ApplicationEvents;
using FrontDesk.Core.Events.IntegrationEvents;
using FrontDesk.Core.Interfaces;
using Microsoft.Extensions.Logging;
using Microsoft.Extensions.ObjectPool;
Expand Down

0 comments on commit 59dbcf4

Please sign in to comment.