public bool EliminarRedSocial(ERedSocial entRedSocial) { // Trae la fila encontrada con el CodError y el Mensaje DataRow fila = datos.TraerDataRow("spEliminarRedSocial", entRedSocial.CodCuenta); // Obtengo el CodError y Mensaje de fila byte codError = Convert.ToByte(fila["CodError"]); mensaje = fila["Mensaje"].ToString(); if (codError == 0) { return(true); } else { return(false); } }
public bool InsertarRedSocial(ERedSocial redsocial) { throw new NotImplementedException(); }
public DataSet ListarRedSocial(ERedSocial redsocial) { throw new NotImplementedException(); }
public bool ActualizarRedSocial(ERedSocial redsocial) { throw new NotImplementedException(); }