Beispiel #1
0
        protected override void OnCreate(Bundle savedInstanceState)
        {
            base.OnCreate(savedInstanceState);


            SetContentView(Resource.Layout.GiftCertDetailView);


            GcPurchaseDataService dataService = new GcPurchaseDataService();
            var selectedGcPurchaseId          = Intent.Extras.GetInt("selectedGcPurchaseId");

            selectedHotDog = dataService.GetGcPurchaseById(selectedGcPurchaseId);


            FindViews();
            BindData();
            HandleEvents();
        }
Beispiel #2
0
 public BaseFragment()
 {
     gcPurchaseDataService = new GcPurchaseDataService();
 }