public EmptyResult UpdatePrices() { double horas = (DateTime.Now - EstadoAplicacion.LastPricesUpdateTime).TotalHours; if (horas >= 24) { EstadoAplicacion.LastPricesUpdateTime = DateTime.Now; AgenteShoppingList agente = new AgenteShoppingList(); agente.UpdatePrices(); } return(new EmptyResult()); }