/// <summary> /// elimina una patente /// </summary> /// <param name="_object">patente</param> public static void Delete(Entities.UFP.Patente _object) { try { Patente.Delete(_object); } catch (Exception ex) { throw ex; } }
public static DataTable SelectAll() { try { return(Patente.SelectAll().Tables[0]); } catch (Exception ex) { throw ex; } }
/// <summary> /// inserta una patente /// </summary> /// <param name="_object">patente</param> public static void Insert(Entities.UFP.Patente _object) { try { Patente.Insert(_object); } catch (Exception ex) { throw ex; } }
public static DataRow Select(System.String IdFamiliaElement) { try { return(Patente.Select(IdFamiliaElement).Tables[0].Rows[0]); } catch (Exception ex) { throw ex; } }