public IActionResult Ips() { var model = new IpsViewModel(); model.Ips = _servicesAmbulance.GetAllIps().ToList(); return(View(model)); }
public IActionResult Index() { var model = new IndexVideModel { Ambulances = _servicesAmbulance.GetAllAmbulances(), Ips = _servicesAmbulance.GetAllIps(), Services = _servicesAmbulance.GetAllServices() }; return(View(model)); }