Skip to content

Instantly share code, notes, and snippets.

@csainty
Created January 28, 2013 15:58
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 csainty/4656671 to your computer and use it in GitHub Desktop.
Save csainty/4656671 to your computer and use it in GitHub Desktop.
public interface IsEmailAlreadyInUse
{
Task<bool> Execute(string emailAddress);
}
internal class SqlRepository : IsEmailAlreadyInUse
{
Task<bool> IsEmailAlreadyInUse.Execute(string emailAddress)
{
// Implementation goes here
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment