-
-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added unit tests Generators and Analyzers
- Loading branch information
1 parent
45ccbb1
commit aead4d5
Showing
16 changed files
with
1,212 additions
and
165 deletions.
There are no files selected for viewing
12 changes: 12 additions & 0 deletions
12
src/Infrastructure.WebApi.Interfaces/IWebRequest.AspNet.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,12 @@ | ||
using MediatR; | ||
using Microsoft.AspNetCore.Http; | ||
|
||
namespace Infrastructure.WebApi.Interfaces; | ||
|
||
/// <summary> | ||
/// Defines a incoming REST request and response. | ||
/// Note: <see cref="IRequest{IResult}" /> is required for the MediatR handlers to be wired up | ||
/// </summary> | ||
public partial interface IWebRequest : IRequest<IResult> | ||
{ | ||
} |
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
Oops, something went wrong.