protected override void OnCreate(Bundle savedInstanceState)
        {
            base.OnCreate(savedInstanceState);
            SetContentView(Resource.Layout.HotDogDetailView);
            HotDogDataService dataService = new HotDogDataService();

            selectedHotDog = dataService.GetHotDogByID(1);


            FindViews();
            BindData();
        }