コード例 #1
0
        public static StationsFragment NewInstance(IStationsView view, IStationsPresenter presenter)
        {
            var fragment = new StationsFragment
            {
                _view      = view,
                _presenter = presenter
            };

            return(fragment);
        }
コード例 #2
0
 public NoFreeStationsPresenter(IStationsView view) : base(view)
 {
 }
コード例 #3
0
 protected StationsPresenterBase(IStationsView view)
 {
     _view            = view;
     _stationsService = new StationsService();
     Stations         = Enumerable.Empty <Station>().ToList();
 }
コード例 #4
0
 public TopAvailableStationsPresenter(IStationsView view) : base(view)
 {
 }