Esempio n. 1
0
        public override void BtnMapFragmentClick()
        {
            if (_fragmentState.GetType () == typeof(StateFragmentArtikelZubehoer))
                return;

            // First check if a Artikel is selected
            if (this._artikel.ID == null)
                return;

            _fragmentState = new StateFragmentArtikelZubehoer (this._mainActivity, this);

            _fragmentState.BtnMapFragmentClick ();

        }
Esempio n. 2
0
        async public override System.Threading.Tasks.Task BtnMapFragmentClickAsync ()
        {


            if (_fragmentState.GetType () == typeof(StateFragmentArtikelZubehoer))
                return;

            // First check if a Artikel is selected
            if (this._artikel.ID == null)
                return;

            _fragmentState = new StateFragmentArtikelZubehoer (this._mainActivity, this);

            await _fragmentState.BtnMapFragmentClickAsync ();
        }
Esempio n. 3
0
 public ArtikelZubehoerFragment(int layoutId, MainActivity activity,   StateFragmentArtikelZubehoer stateFragment , BusinessLayer.User user)
 {
     _stateFragment = stateFragment;
     _activity = activity;
     this.layoutId = layoutId;
 }