Esempio n. 1
0
 //Eliminar telefonos
 public static void DeleteTelefon(TELEFONS telefon)
 {
     ORM.bd.TELEFONS.Remove(telefon);
     try
     {
         ORM.bd.SaveChanges();
     }
     catch (DbUpdateException ex)
     {
         SqlException sqlEx = (SqlException)ex.InnerException.InnerException;
     }
 }
Esempio n. 2
0
        //LINQ


        //Agregar telefonos
        public static void InsertTelefono(int id_enti, String rao, String telefono)
        {
            TELEFONS telefon = new TELEFONS();

            telefon.id_entitat = id_enti;
            telefon.rao        = rao;
            telefon.telefono   = telefono;

            ORM.bd.TELEFONS.Add(telefon);
            try
            {
                ORM.bd.SaveChanges();
            }
            catch (Exception) {
            }
        }
Esempio n. 3
0
        //Seleccionar un telefono filtrando por id
        public static TELEFONS SelectTelefonByID(int id)
        {
            TELEFONS telefon = ORM.bd.TELEFONS.Find(id);

            return(telefon);
        }