예제 #1
0
        private bool Buscar()
        {
            ProblemaBLL BLL = new ProblemaBLL();

            Problemas = BLL.buscar();
            if (Problemas != null)
            {
                return(true);
            }
            return(false);
        }
예제 #2
0
        private bool ResolveProblema(int id)
        {
            ProblemaBLL BLL = new ProblemaBLL();

            if (BLL.Atualiza(id, "00", "CHECK MOBILE"))
            {
                return(true);
            }

            return(false);
        }