public GeoLocationService(LocationManager locationManager, IMarshalInvokeService marshalService)
 {
     manager = locationManager;
     marshal = marshalService;
     timer = new Timer(SEVEN_SECONDS);
     timer.Elapsed += OnTimeout;
 }
 public GeoLocationService(LocationManager locationManager, IMarshalInvokeService marshalService)
 {
     manager        = locationManager;
     marshal        = marshalService;
     timer          = new Timer(SEVEN_SECONDS);
     timer.Elapsed += OnTimeout;
 }
Example #3
0
        public StockChartPresenter(IAppStatusService statusService, IMarshalInvokeService marshalInvoke, StockItem stockItem)
            : base(stockItem.Symbol)
        {
            _statusService = statusService;
            _marshalInvoke = marshalInvoke;
            _stockItem     = stockItem;

            FetchPriceData(stockItem.Symbol);
        }
        public StockChartPresenter(IAppStatusService statusService, IMarshalInvokeService marshalInvoke, StockItem stockItem)
            : base(stockItem.Symbol)
        {
            _statusService = statusService;
            _marshalInvoke = marshalInvoke;
            _stockItem = stockItem;

            FetchPriceData (stockItem.Symbol);
        }
        public StockPriceListPresenter(IAppStatusService statusService, IMarshalInvokeService marshalInvoke, INavigationService navigationService)
            : base("FTSE 100")
        {
            _statusService = statusService;
            _marshalInvoke = marshalInvoke;
            _navigationService = navigationService;

            // generate the stock data items from a CSV list
            var symbols = FTSE100.Split (',');
            foreach (var symbol in symbols) {
                _stocks.Add (new StockItem (symbol));
            }

            FetchQuotes ();
        }
        public StockPriceListPresenter(IAppStatusService statusService, IMarshalInvokeService marshalInvoke, INavigationService navigationService)
            : base("FTSE 100")
        {
            _statusService     = statusService;
            _marshalInvoke     = marshalInvoke;
            _navigationService = navigationService;

            // generate the stock data items from a CSV list
            var symbols = FTSE100.Split(',');

            foreach (var symbol in symbols)
            {
                _stocks.Add(new StockItem(symbol));
            }

            FetchQuotes();
        }
 public JsonWebPropertySearch(IMarshalInvokeService marshal)
 {
     _marshal = marshal;
 }
 public JsonWebPropertySearch(IMarshalInvokeService marshal, IMvxRestClient restClient)
 {
     _marshal = marshal;
     _restClient = restClient;
 }
 public PropertyDataSource(IJsonPropertySearch jsonPropertySearch, IMarshalInvokeService marshalInvokeService)
 {
     _jsonPropertySearch = jsonPropertySearch;
     _marshalInvokeService = marshalInvokeService;
 }
 public JsonWebPropertySearch(IMarshalInvokeService marshal, IMvxRestClient restClient)
 {
     _marshal    = marshal;
     _restClient = restClient;
 }
Example #11
0
 public PropertyDataSource(IJsonPropertySearch jsonPropertySearch, IMarshalInvokeService marshalInvokeService)
 {
     _jsonPropertySearch   = jsonPropertySearch;
     _marshalInvokeService = marshalInvokeService;
 }
Example #12
0
 public JsonWebPropertySearch(IMarshalInvokeService marshal)
 {
     _marshal = marshal;
 }