/// <summary> /// Create a new AnticipoCab object. /// </summary> /// <param name="numAnticipo">Initial value of the NumAnticipo property.</param> /// <param name="idEmpleado">Initial value of the IdEmpleado property.</param> /// <param name="fecha">Initial value of the Fecha property.</param> /// <param name="total">Initial value of the Total property.</param> /// <param name="idEmpresa">Initial value of the IdEmpresa property.</param> /// <param name="idEstado">Initial value of the IdEstado property.</param> public static AnticipoCab CreateAnticipoCab(global::System.Int32 numAnticipo, global::System.Int32 idEmpleado, global::System.DateTime fecha, global::System.Decimal total, global::System.Int32 idEmpresa, global::System.Int32 idEstado) { AnticipoCab anticipoCab = new AnticipoCab(); anticipoCab.NumAnticipo = numAnticipo; anticipoCab.IdEmpleado = idEmpleado; anticipoCab.Fecha = fecha; anticipoCab.Total = total; anticipoCab.IdEmpresa = idEmpresa; anticipoCab.IdEstado = idEstado; return anticipoCab; }
/// <summary> /// Deprecated Method for adding a new object to the AnticipoCab EntitySet. Consider using the .Add method of the associated ObjectSet<T> property instead. /// </summary> public void AddToAnticipoCab(AnticipoCab anticipoCab) { base.AddObject("AnticipoCab", anticipoCab); }
public Boolean Guardar(clsAnticipoCabecera ac) { try { using (RecursosHumanosEntities ent = new RecursosHumanosEntities()) { AnticipoCab anc = new AnticipoCab () { NumAnticipo = ac.NumAnticipo, Fecha = ac.Fecha, FechaModificacion = ac.FechaModificacion, Porcentaje = ac.Porcentaje, Total = Convert.ToDecimal(ac.Total), IdEstado = ac.IdEstado, IdEmpresa = ac.IdEmpresa, Observacion = ac.Observacion, }; ent.AddToAnticipoCab (anc ); ent.SaveChanges(); } return true; } catch (Exception) { return false; } }