public bool SignIn(string username, string password, bool rememberMe)
        {
            var authenticated = _authenticator.Authenticate(username, password);

            if (!authenticated)
            {
                return(false);
            }

            _formsAuthentication.SetAuthCookie(username, rememberMe);

            return(true);
        }