public ParticipantesPresupuestos UpdateParticipantePartidaPresupuesto(ParticipantesPresupuestos participantePresupuesto) { participantePresupuesto.FechaModifica = DateTime.Now; var participantePresupuestoUpdated = contextoOperaciones.ParticipantesPresupuestos.ApplyCurrentValues(participantePresupuesto); //var participantePresupuestoToUpdate = contextoOperaciones.ParticipantesPresupuestos.FirstOrDefault(p=> p.IdParticipantePresupuesto==participantePresupuesto.IdParticipantePresupuesto); //participantePresupuestoToUpdate = participantePresupuesto; //participantePresupuestoToUpdate.FechaModifica = DateTime.Now; contextoOperaciones.SaveChanges(); return(participantePresupuestoUpdated); }
public ParticipantesPresupuestos CreateParticipantesPartidaPresupuesto(int idEmpresa, int idUsuario, int idPresupCab, int idPresupCap, int idPresupDet, int?idPresupSub) { var participantePresupuesto = new ParticipantesPresupuestos { IdEmpresa = idEmpresa, IdUsuario = idUsuario, IdPresupCab = idPresupCab, IdPresupCap = idPresupCap, IdPresupDet = idPresupDet, IdPresupSub = idPresupSub, NombrePartida = GetNombrePartidaPresupuesto(idPresupDet, idPresupSub), EsServicio = false, Seleccionado1 = false, Seleccionado2 = false, Seleccionado3 = false, FechaCrea = DateTime.Now, FechaModifica = DateTime.Now }; contextoOperaciones.ParticipantesPresupuestos.AddObject(participantePresupuesto); contextoOperaciones.SaveChanges(); return(participantePresupuesto); }
public bool AddParticipantePartidaPresupuesto(ParticipantesPresupuestos participantePresupuesto) { contextoOperaciones.ParticipantesPresupuestos.AddObject(participantePresupuesto); contextoOperaciones.SaveChanges(); return(true); }