-
-
Save dcomartin/f623bf5fcff70a02e5279ff75732269f 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 interface ICustomerService | |
{ | |
void MakeCustomerPreferred(Guid customerId); | |
Customer GetCustomer(Guid customerId); | |
IEnumerable<Customer> GetCustomersWithName(string name); | |
IEnumerable<Customer> GetPreferredCustomers(); | |
void ChangeCustomerLocale(Guid customerId, CultureInfo newLocale); | |
void CreateCustomer(Customer customer); | |
void EditCustomerDetails(CustomerDetails customerDetails); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment