public HttpResponseMessage GetCombustiveis() { CombustivelDal d = new CombustivelDal(); var result = d.Listar().OrderBy(m => m.Nome); return(Request.CreateResponse(HttpStatusCode.OK, result)); }
public void CarregarDropDowns() { ViewBag.Combustivel = combustivelDal.Listar().OrderBy(x => x.Nome); ViewBag.Tipo = tipoDal.Listar().OrderBy(x => x.Nome); ViewBag.Ano = anoModeloDal.ListarAno2(); ViewBag.AnoFabricacao = AnoModeloDal.ListarAnoFabricacao(); }