-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: resolve miscellaneous issues in
Reminders
module
- Loading branch information
1 parent
5122afb
commit d607c9b
Showing
7 changed files
with
40 additions
and
30 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
5 changes: 3 additions & 2 deletions
5
...Reminders.Application/Entities/Reminders/Commands/CreateReminder/CreateReminderCommand.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
5 changes: 4 additions & 1 deletion
5
.../Reminders.Application/Entities/Reminders/Queries/GetReminderById/GetReminderByIdQuery.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,10 @@ | ||
using Reminders.Application.Entities.Reminders.Dtos; | ||
// ReSharper disable ClassNeverInstantiated.Global | ||
|
||
using Reminders.Application.Entities.Reminders.Dtos; | ||
|
||
namespace Reminders.Application.Entities.Reminders.Queries.GetReminderById; | ||
|
||
public record GetReminderByIdQuery(string Id) : IQuery<GetReminderByIdResult>; | ||
|
||
// ReSharper disable once NotAccessedPositionalProperty.Global | ||
public record GetReminderByIdResult(ReminderDto ReminderDto); |
2 changes: 2 additions & 0 deletions
2
...ders/Reminders.Application/Entities/Reminders/Queries/ListReminders/ListRemindersQuery.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
9 changes: 5 additions & 4 deletions
9
Backend/src/Modules/Reminders/Reminders.Application/GlobalUsing.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
global using Microsoft.EntityFrameworkCore; | ||
global using FluentValidation; | ||
global using Microsoft.EntityFrameworkCore; | ||
global using BuildingBlocks.Application.Cqrs; | ||
global using Reminders.Domain.Models; | ||
global using Reminders.Application.Data; | ||
global using BuildingBlocks.Domain.ValueObjects.Ids; | ||
global using BuildingBlocks.Application.Exceptions; | ||
global using BuildingBlocks.Domain.ValueObjects.Ids; | ||
global using Reminders.Application.Data; | ||
global using Reminders.Domain.Models; |