protected override void OnCreate(Bundle savedInstanceState)
        {
            base.OnCreate(savedInstanceState);
            SetContentView(Resource.Layout.DisplayClass);

            var myIntent = Intent;

            tempStringClass      = myIntent.GetStringExtra("classObject");
            tempStringInstructor = myIntent.GetStringExtra("instructorObject");
            tempObj = tempRepository.DeStringifyObject(tempStringClass);
            tempRepository.LoadClasses();
            tempInstructor = tempInstructorRepository.DeStringifyInstructorObject(tempStringInstructor);
            FillForm();
            // Create your application here
        }