Пример #1
0
        public async Task <int> RetornaIdUnicoServidor()
        {
            var repositorioSQLite = new Repositorio.SQLite.Repositorio();
            var servidor          = await repositorioSQLite.RetornarServidoresAsync();

            return(servidor.FirstOrDefault().IdServidor);
        }
Пример #2
0
        public async Task <bool> DeveGravarSessaoServidor()
        {
            var repositorioSQLite = new Repositorio.SQLite.Repositorio();

            return((await repositorioSQLite.RetornarServidoresAsync()).Count == 1);
        }