public static string Actualizar(int Id, string NombreAnt, string Nombre, string Descripcion) { DCategorias Datos = new DCategorias(); Categorias Obj = new Categorias(); if (NombreAnt.Equals(Nombre)) { Obj.idCategoria = Id; Obj.Nombre = Nombre; Obj.Descripcion = Descripcion; return(Datos.Actualizar(Obj)); } else { string Existe = Datos.Existe(Nombre); if (Existe.Equals("1")) { return("La categoría ya existe"); } else { Obj.idCategoria = Id; Obj.Nombre = Nombre; Obj.Descripcion = Descripcion; return(Datos.Actualizar(Obj)); } } }
public static string Insertar(string nombre, string descripcion) { DCategorias Datos = new DCategorias(); string existe = Datos.Existe(nombre); if (existe.Equals("1")) { return("La categoria ya existe"); } else { Categorias Obj = new Categorias(); Obj.Nombre = nombre; Obj.Descripcion = descripcion; return(Datos.Insertar(Obj)); } }