public static bool MAJImportColonne(Galatee.Structure.aImportFichierColonne lacolonne) { try { using (galadbEntities context = new galadbEntities()) { IMPORTCOLONNE colon = context.IMPORTCOLONNE.FirstOrDefault(c => c.ID_COLONNE == lacolonne.ID_COLONNE); if (colon != null) { IMPORTCOLONNE _lacolonne = Entities.ConvertObject <IMPORTCOLONNE, Galatee.Structure.aImportFichierColonne>(lacolonne); return(Entities.UpdateEntity <IMPORTCOLONNE>(_lacolonne)); } else { IMPORTCOLONNE _lacolonne = Entities.ConvertObject <IMPORTCOLONNE, Galatee.Structure.aImportFichierColonne>(lacolonne); return(Entities.InsertEntity <IMPORTCOLONNE>(_lacolonne)); } };; } catch (Exception ex) { throw ex; } }
public static bool DeleteImportFichierColonne(int CodeColonne) { try { using (galadbEntities context = new galadbEntities()) { IMPORTCOLONNE colonne = context.IMPORTCOLONNE.FirstOrDefault(c => c.ID_COLONNE == CodeColonne); if (colonne != null) { context.IMPORTCOLONNE.Remove(colonne); context.SaveChanges(); return(true); } else { return(false); } }; } catch (Exception ex) { throw ex; } }