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