Unverified Commit 6529f82d authored by Almouhannad Hafez's avatar Almouhannad Hafez Committed by GitHub

Merge pull request #6 from Almouhannad/B_Add-MediatR-and-CQRS-bases

(B) Resolve issues
parents 9ae05f5b 277820c6
...@@ -18,6 +18,7 @@ ...@@ -18,6 +18,7 @@
<PrivateAssets>all</PrivateAssets> <PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference> </PackageReference>
<PackageReference Include="Scrutor" Version="4.2.2" />
<PackageReference Include="Swashbuckle.AspNetCore" Version="6.7.0" /> <PackageReference Include="Swashbuckle.AspNetCore" Version="6.7.0" />
</ItemGroup> </ItemGroup>
......
using System; using MediatR;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Application.Abstractions.CQRS.Queries namespace Application.Abstractions.CQRS.Queries;
public interface IQuery<TResponse> : IRequest<TResponse>
{ {
internal interface Interface1
{
}
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment