public bool Eliminar_Comprobantes_Generados_FX(fx_Comprobante_generados_Info info) { try { using (Entity_conexion_efixed Context = new Entity_conexion_efixed()) { fa_elec_registros_generados Entity = Context.fa_elec_registros_generados.FirstOrDefault(q => q.ID_REGISTRO == info.IdRegistro); Context.fa_elec_registros_generados.Remove(Entity); Context.SaveChanges(); return(true); } } catch (Exception) { return(false); } }
public void GuardarComprobantes_generados_FX(fx_Comprobante_generados_Info info) { try { using (Entity_conexion_efixed Context = new Entity_conexion_efixed()) { fa_elec_registros_generados entity = new fa_elec_registros_generados(); entity.ID_REGISTRO = info.IdRegistro; entity.FECHA_CARGA = info.FECHA_CARGA = DateTime.Now; entity.ESTADO = "A"; Context.fa_elec_registros_generados.Add(entity); Context.SaveChanges(); } } catch (Exception ex) { } }
public List <fx_Comprobante_generados_Info> Listacomprobantes_generados_FX() { try { List <fx_Comprobante_generados_Info> lista = new List <fx_Comprobante_generados_Info>(); using (Entity_conexion_efixed Context = new Entity_conexion_efixed()) { lista = (from q in Context.fa_elec_registros_generados select new fx_Comprobante_generados_Info { IdRegistro = q.ID_REGISTRO, FECHA_CARGA = q.FECHA_CARGA, Estado = q.ESTADO, Checked = true }).ToList(); } return(lista); } catch (Exception) { return(new List <fx_Comprobante_generados_Info>()); } }