public void IntoApp()
        {
            CurrentUser.SaveverifyResume("Stop");
            int storename = Convert.ToInt32(CurrentUser.GetPrefered());

            if (storename == 1)
            {
                Intent intent = new Intent(this, typeof(GridViewActivity));
                intent.PutExtra("MyData", "Wall Store");
                ProgressIndicator.Show(this);
                StartActivity(intent);
            }
            else if (storename == 2)
            {
                Intent intent = new Intent(this, typeof(GridViewActivity));
                intent.PutExtra("MyData", "Point Pleasant Store");
                ProgressIndicator.Show(this);
                StartActivity(intent);
            }
            else if (storename == 3)
            {
                Intent intent = new Intent(this, typeof(GridViewActivity));
                intent.PutExtra("MyData", AppConstants.SecaucusStore);
                ProgressIndicator.Show(this);
                StartActivity(intent);
            }
            else
            {
                Intent intent = new Intent(this, typeof(Login));
                ProgressIndicator.Show(this);
                StartActivity(intent);
            }
        }