Skip to content

Instantly share code, notes, and snippets.

@dcomartin
Created November 4, 2020 22:26
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 dcomartin/f623bf5fcff70a02e5279ff75732269f to your computer and use it in GitHub Desktop.
Save dcomartin/f623bf5fcff70a02e5279ff75732269f to your computer and use it in GitHub Desktop.
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