Created
February 2, 2018 16:36
-
-
Save tarikguney/7ba3da6e54c7bd148c0589fc24b0e51c 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
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