Beispiel #1
0
        private static void LoginUserFromData()
        {
            string email    = Settings.Default.Email;
            string password = Settings.Default.Password;

            if (email.Length > 3)
            {
                ConnectionController connection = ConnectionControllerImpl.GetController();
                connection.SingIn(SaveService.GetUser());
            }
        }