Esempio n. 1
0
 public IList <Perfil> ObterPerfilTodos()
 {
     using (BMPerfil perfilBM = new BMPerfil())
     {
         return(perfilBM.ObterTodos().OrderBy(n => n.Nome).ToList());
     }
 }
 public IList <Perfil> ObterPerfilTodos()
 {
     using (BMPerfil bmPerfil = new BMPerfil())
     {
         return(bmPerfil.ObterTodos());
     }
 }
Esempio n. 3
0
        public IList <DTOPerfil> ListarPerfil()
        {
            perfilBM = new BMPerfil();
            IList <DTOPerfil> lstResut = null;

            try
            {
                lstResut = new List <DTOPerfil>();

                foreach (Perfil pf in perfilBM.ObterTodos())
                {
                    DTOPerfil pfdto = new DTOPerfil();
                    CommonHelper.SincronizarDominioParaDTO(pf, pfdto);
                    lstResut.Add(pfdto);
                }
            }
            catch (Exception ex)
            {
                ErroUtil.Instancia.TratarErro(ex);
            }

            return(lstResut);
        }
Esempio n. 4
0
 public IList <Perfil> ObterTodosPerfis()
 {
     return(bmPerfil.ObterTodos());
 }
 public IList <Perfil> ObterPerfilsTodos()
 {
     using (BMPerfil pfBM = new BMPerfil()) { return(pfBM.ObterTodos()); }
 }
Esempio n. 6
0
        public IList <Perfil> ObterPerfis()
        {
            var bmPerfil = new BMPerfil();

            return(bmPerfil.ObterTodos());
        }