7 lines
138 B
C#
7 lines
138 B
C#
|
|
namespace SIGCM2.Application.Abstractions;
|
||
|
|
|
||
|
|
public interface IDispatcher
|
||
|
|
{
|
||
|
|
Task<TResult> Send<TCommand, TResult>(TCommand command);
|
||
|
|
}
|