aspnetcore query support.

This commit is contained in:
David Lebee
2021-02-02 01:05:48 -05:00
parent 808dcbd18f
commit 60abf83932
17 changed files with 402 additions and 2 deletions
@@ -0,0 +1,9 @@
using System;
namespace PoweredSoft.CQRS.AspNetCore.Abstractions.Attributes
{
[AttributeUsage(AttributeTargets.Class)]
public class CommandControllerIgnoreAttribute : Attribute
{
}
}
@@ -0,0 +1,11 @@
using System;
using System.Collections.Generic;
using System.Text;
namespace PoweredSoft.CQRS.AspNetCore.Abstractions.Attributes
{
[AttributeUsage(AttributeTargets.Class)]
public class QueryControllerIgnoreAttribute : Attribute
{
}
}