Created
March 12, 2016 20:05
-
-
Save dcomartin/637be7c9ed8fd99ce607 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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