/// <summary> /// Create a new Paquete object. /// </summary> /// <param name="paqueteId">Initial value of the PaqueteId property.</param> /// <param name="creditos">Initial value of the Creditos property.</param> /// <param name="precio">Initial value of the Precio property.</param> /// <param name="fechaVencimiento">Initial value of the FechaVencimiento property.</param> /// <param name="fechaCreacion">Initial value of the FechaCreacion property.</param> /// <param name="baja">Initial value of the Baja property.</param> public static Paquete CreatePaquete(global::System.Int32 paqueteId, global::System.Int16 creditos, global::System.Decimal precio, global::System.DateTime fechaVencimiento, global::System.DateTime fechaCreacion, global::System.Boolean baja) { Paquete paquete = new Paquete(); paquete.PaqueteId = paqueteId; paquete.Creditos = creditos; paquete.Precio = precio; paquete.FechaVencimiento = fechaVencimiento; paquete.FechaCreacion = fechaCreacion; paquete.Baja = baja; return paquete; }
public ActionResult Create(PaqueteVM paqueteVM) { Paquete paquete = new Paquete(); if (ModelState.IsValid) { Mapper.Map(paqueteVM, paquete); repository.Add(paquete); repository.Save(); return RedirectToAction("Index"); } return View(paqueteVM); }
/// <summary> /// Deprecated Method for adding a new object to the Paquetes EntitySet. Consider using the .Add method of the associated ObjectSet<T> property instead. /// </summary> public void AddToPaquetes(Paquete paquete) { base.AddObject("Paquetes", paquete); }