Example #1
0
        public bool VersaoDisponivelIgualLiberada(string sUltimaVersao)
        {
            string sUltimaVersaoDisp = "";

            HLP.WebService.Ws_versionamento_Cliente.Verisionamento ws = new HLP.WebService.Ws_versionamento_Cliente.Verisionamento();
            sUltimaVersaoDisp = ws.BuscaUltimaVersaoDisponivel();

            if (sUltimaVersao == sUltimaVersaoDisp)
            {
                return true;
            }
            else
            {
                return false;
            }
        }