Skip to content

Commit

Permalink
minor formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
ardalis committed Mar 4, 2022
1 parent 6614ece commit 8f36e0e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@

namespace FrontDesk.Infrastructure.Data.Sync
{

public class CreateDoctorHandler : IRequestHandler<CreateDoctorCommand>
{
private readonly AppDbContext _dbContext;
Expand All @@ -19,6 +18,7 @@ public CreateDoctorHandler(AppDbContext dbContext,
_dbContext = dbContext;
_logger = logger;
}

public async Task<Unit> Handle(CreateDoctorCommand request, CancellationToken cancellationToken)
{
_logger.LogInformation($"Creating new Doctor in FrontDesk database: {request.Name}");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@

namespace FrontDesk.Infrastructure.Data.Sync
{

public class UpdateClientHandler : IRequestHandler<UpdateClientCommand>
{
private readonly AppDbContext _dbContext;
Expand All @@ -20,6 +19,7 @@ public UpdateClientHandler(AppDbContext dbContext,
_dbContext = dbContext;
_logger = logger;
}

public async Task<Unit> Handle(UpdateClientCommand request,
CancellationToken cancellationToken)
{
Expand Down

0 comments on commit 8f36e0e

Please sign in to comment.