-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #17 from SoftTeam-Emergentes/fix/routes
Fix/routes
- Loading branch information
Showing
81 changed files
with
597 additions
and
515 deletions.
There are no files selected for viewing
18 changes: 9 additions & 9 deletions
18
.../commands/CancelArtEventCommandHandler.cs → .../Commands/CancelArtEventCommandHandler.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
14 changes: 7 additions & 7 deletions
14
.../commands/DeleteArtEventCommandHandler.cs → .../Commands/DeleteArtEventCommandHandler.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
15 changes: 7 additions & 8 deletions
15
...ts/commands/EditArtEventCommandHandler.cs → ...ts/Commands/EditArtEventCommandHandler.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
16 changes: 8 additions & 8 deletions
16
.../commands/FinishArtEventCommandHandler.cs → .../Commands/FinishArtEventCommandHandler.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
16 changes: 8 additions & 8 deletions
16
...ommands/RegisterArtEventCommandHandler.cs → ...ommands/RegisterArtEventCommandHandler.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
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
18 changes: 9 additions & 9 deletions
18
...mands/RescheduleArtEventCommandHandler.cs → ...mands/RescheduleArtEventCommandHandler.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
16 changes: 8 additions & 8 deletions
16
...s/commands/StartArtEventCommandHandler.cs → ...s/Commands/StartArtEventCommandHandler.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
10 changes: 5 additions & 5 deletions
10
...events/ArtEventRescheduledEventHandler.cs → ...Events/ArtEventRescheduledEventHandler.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
10 changes: 5 additions & 5 deletions
10
...s/events/CancelledArtEventEventHandler.cs → ...s/Events/CancelledArtEventEventHandler.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
10 changes: 5 additions & 5 deletions
10
...ents/ParticipantRegisteredEventHandler.cs → ...ents/ParticipantRegisteredEventHandler.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
22 changes: 22 additions & 0 deletions
22
...RS/ArtEventManagement/Application/ArtEvents/Queries/GetArtEventsByHobbyistQueryHandler.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 |
---|---|---|
@@ -0,0 +1,22 @@ | ||
using System.Collections.Generic; | ||
using System.Threading; | ||
using System.Threading.Tasks; | ||
using MediatR; | ||
using PERUSTARS.ArtEventManagement.Domain.Model.Queries; | ||
using PERUSTARS.ArtEventManagement.Domain.Model.Repositories; | ||
using PERUSTARS.ArtEventManagement.Interfaces.REST.Resources; | ||
using PERUSTARS.ProfileManagement.Domain.Repositories; | ||
|
||
namespace PERUSTARS.ArtEventManagement.Application.ArtEvents.Queries; | ||
|
||
public class GetArtEventsByHobbyistQueryHandler: IRequestHandler<GetArtEventsByHobbyistQuery, IEnumerable<ArtEventResource>> | ||
{ | ||
private readonly IArtEventRepository _artEventRepository; | ||
private readonly IParticipantRepository _participantRepository; | ||
private readonly IHobbyistRepository _hobbyistRepository; | ||
|
||
public Task<IEnumerable<ArtEventResource>> Handle(GetArtEventsByHobbyistQuery request, CancellationToken cancellationToken) | ||
{ | ||
throw new System.NotImplementedException(); | ||
} | ||
} | ||
11 changes: 5 additions & 6 deletions
11
...artevents/service/ArtEventQueryService.cs → ...ArtEvents/Service/ArtEventQueryService.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
11 changes: 5 additions & 6 deletions
11
...tion/artevents/service/ArtEventService.cs → ...tion/ArtEvents/Service/ArtEventService.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
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
10 changes: 5 additions & 5 deletions
10
...mand/Service/ParticipantCommandService.cs → ...mand/Service/ParticipantCommandService.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
10 changes: 5 additions & 5 deletions
10
...cipant/Queries/ParticipantQueryService.cs → ...cipant/Queries/ParticipantQueryService.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
4 changes: 2 additions & 2 deletions
4
...ement/Domain/Model/Aggregates/ArtEvent.cs → ...ement/Domain/Model/Aggregates/ArtEvent.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
3 changes: 1 addition & 2 deletions
3
...nt/Domain/Model/Aggregates/Participant.cs → ...nt/Domain/Model/Aggregates/Participant.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
3 changes: 1 addition & 2 deletions
3
...in/Model/Commads/CancelArtEventCommand.cs → ...in/Model/Commads/CancelArtEventCommand.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
Oops, something went wrong.