Skip to content

Instantly share code, notes, and snippets.

@dcomartin
Created March 12, 2016 20:05
Show Gist options
  • Save dcomartin/637be7c9ed8fd99ce607 to your computer and use it in GitHub Desktop.
Save dcomartin/637be7c9ed8fd99ce607 to your computer and use it in GitHub Desktop.
public class ChangeCustomerPricingLevel : IAsyncRequest
{
public Guid CustomerId { get; }
public PricingLevel PricingLevel { get; }
public ChangeCustomerPricingLevel(Guid customerId, PricingLevel pricingLevel)
{
CustomerId = customerId;
PricingLevel = pricingLevel;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment