public void LoadBrandData(object obj) { brands = carsApi.Brands(); CompleteLabel.Dispatcher.BeginInvoke(new Action(LoadStarted)); BrandComboBox.Dispatcher.BeginInvoke(new Action(IntializeBrandComboBox)); CompleteLabel.Dispatcher.BeginInvoke(new Action(LoadComplited)); }
public JsonResult Brands() { return(Json(carsApi.Brands(), JsonRequestBehavior.AllowGet)); }
public void ReclamTest() { Assert.IsTrue(carsApi.Brands().Any()); }