public bool Existe(int id, string nombre, Categorias_grupos categoria) { string consulta = "select 1 from nombre_grupo where nombre='" + nombre + "' and id_categoria=" + Convert.ToInt32(categoria).ToString() + " and id<>" + id; DataTable dt = bd.Ejecutar_consulta(consulta); bd.Cerrar(); return(dt.Rows.Count > 0); }
private int Buscar_id(string nombre, Categorias_grupos categoria) { string consulta = "select id from nombre_grupo where nombre='" + nombre + "' and id_categoria=" + Convert.ToInt32(categoria).ToString(); DataTable dt = bd.Ejecutar_consulta(consulta); bd.Cerrar(); if (dt.Rows.Count > 0) { return(Convert.ToInt32(dt.Rows[0]["id"])); } else { return(-1); } }
public bool Existe(string nombre, Categorias_grupos categoria) { return(Existe(-1, nombre, categoria)); }
public Nombre_Grupo(int ID, string Nombre, Categorias_grupos Categoria) { this.ID = ID; this.Nombre = Nombre; this.Categoria = Categoria; }