Skip to content

Instantly share code, notes, and snippets.

@tuannguyenssu
Created August 15, 2019 15: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 tuannguyenssu/8ef39eb766971b8292bcd6564c9ebe0a to your computer and use it in GitHub Desktop.
Save tuannguyenssu/8ef39eb766971b8292bcd6564c9ebe0a to your computer and use it in GitHub Desktop.
using MediatR;
namespace CQRSTest.Application.Customers.Queries.GetCustomerDetail
{
public class GetCustomerDetailQuery : IRequest<CustomerDetailViewModel>
{
public int Id {get; set;}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment