Код: Выделить всё
public interface Results
{
Task ResultAsync(TInput query);
}
Код: Выделить всё
public interface Results1
{
TOutput ResultAsync(TInput query);
}
Подробнее здесь: https://stackoverflow.com/questions/793 ... ic-interfa
Код: Выделить всё
public interface Results
{
Task ResultAsync(TInput query);
}
Код: Выделить всё
public interface Results1
{
TOutput ResultAsync(TInput query);
}