Skip to content

Instantly share code, notes, and snippets.

@dcomartin

dcomartin/wtf.cs Secret

Created October 18, 2023 20:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dcomartin/84e097cda0d477058012f428d11291c4 to your computer and use it in GitHub Desktop.
Save dcomartin/84e097cda0d477058012f428d11291c4 to your computer and use it in GitHub Desktop.
public interface IGetOrderById
{
Task<OrderResposne> ExecuteAsync(int orderId);
}
public interface IGetOrderSummary
{
Task<OrderSummary> ExecuteAsync(int orderId);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment