Beispiel #1
0
        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);
            }
        }
Beispiel #2
0
 public bool InsertarRedSocial(ERedSocial redsocial)
 {
     throw new NotImplementedException();
 }
Beispiel #3
0
 public DataSet ListarRedSocial(ERedSocial redsocial)
 {
     throw new NotImplementedException();
 }
Beispiel #4
0
 public bool ActualizarRedSocial(ERedSocial redsocial)
 {
     throw new NotImplementedException();
 }