Skip to content

Instantly share code, notes, and snippets.

@dimitris-papadimitriou-chr
Last active August 27, 2022 17:21
Show Gist options
  • Save dimitris-papadimitriou-chr/56f9e784854e3a8876fe9398917b581f to your computer and use it in GitHub Desktop.
Save dimitris-papadimitriou-chr/56f9e784854e3a8876fe9398917b581f to your computer and use it in GitHub Desktop.
public record class OperationManager<T, R>(IOperation<T, R> operation)
{
public R ExecuteActivity(T t)
{
//do some stuff1
//...
return operation.OperationAsync(t).Result;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment