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