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; } }