Skip to content

Instantly share code, notes, and snippets.

@tarikguney
Created February 2, 2018 16:36
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 tarikguney/7ba3da6e54c7bd148c0589fc24b0e51c to your computer and use it in GitHub Desktop.
Save tarikguney/7ba3da6e54c7bd148c0589fc24b0e51c to your computer and use it in GitHub Desktop.
public class AccountChecker{
public bool Exists(Account account){
//....
}
public bool ExistsInAmazonWebServices(Account account){
//....
}
public bool ExistsInAzure(Account account){
//....
}
public bool ExistsInLDAP(Account account){
//....
}
public bool ExistsInHeaven(Account account){
//....
}
private string ExtractName(Account account){
// ...
}
// OMG: This is getting crazy...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment