namespace Website.Security { public interface IAuthenticationProvider { bool Authenticate(string username, string password); void SignIn(string username); void SignOut(); } }