Last active
June 1, 2016 00:26
-
-
Save fatagun/2d1999f13640cdd6a23b33ba87c59586 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
interface CustomerService | |
{ | |
// Queries | |
Customer GetCustomer(int id); | |
IEnumerable<Customer> GetPreferredCustomers(); | |
// Commands | |
void CreateCustomer(Customer customer); | |
void EditCustomer(CustomerDetails customerDetails); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment