public ActionResult Create(EstadoClima estadoclima)
        {
            estadoclima.Fecha = DateTime.UtcNow;
            if (ModelState.IsValid)
            {
                db.EstadoClimas.AddObject(estadoclima);
                db.SaveChanges();
                return RedirectToAction("Index");
            }

            return View(estadoclima);
        }
 /// <summary>
 /// Create a new EstadoClima object.
 /// </summary>
 /// <param name="fecha">Initial value of the Fecha property.</param>
 /// <param name="climaID">Initial value of the ClimaID property.</param>
 /// <param name="velViento">Initial value of the VelViento property.</param>
 /// <param name="metroNieve">Initial value of the MetroNieve property.</param>
 /// <param name="estadoCamino">Initial value of the EstadoCamino property.</param>
 /// <param name="usoCadenas">Initial value of the UsoCadenas property.</param>
 /// <param name="temperatura">Initial value of the Temperatura property.</param>
 /// <param name="clima">Initial value of the Clima property.</param>
 /// <param name="weather">Initial value of the Weather property.</param>
 public static EstadoClima CreateEstadoClima(global::System.DateTime fecha, global::System.Int64 climaID, global::System.Double velViento, global::System.Double metroNieve, global::System.Boolean estadoCamino, global::System.Boolean usoCadenas, global::System.Int16 temperatura, global::System.String clima, global::System.String weather)
 {
     EstadoClima estadoClima = new EstadoClima();
     estadoClima.Fecha = fecha;
     estadoClima.ClimaID = climaID;
     estadoClima.VelViento = velViento;
     estadoClima.MetroNieve = metroNieve;
     estadoClima.EstadoCamino = estadoCamino;
     estadoClima.UsoCadenas = usoCadenas;
     estadoClima.Temperatura = temperatura;
     estadoClima.Clima = clima;
     estadoClima.Weather = weather;
     return estadoClima;
 }
 /// <summary>
 /// Deprecated Method for adding a new object to the EstadoClimas EntitySet. Consider using the .Add method of the associated ObjectSet&lt;T&gt; property instead.
 /// </summary>
 public void AddToEstadoClimas(EstadoClima estadoClima)
 {
     base.AddObject("EstadoClimas", estadoClima);
 }