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()); } }
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); }
public IList <Perfil> ObterTodosPerfis() { return(bmPerfil.ObterTodos()); }
public IList <Perfil> ObterPerfilsTodos() { using (BMPerfil pfBM = new BMPerfil()) { return(pfBM.ObterTodos()); } }
public IList <Perfil> ObterPerfis() { var bmPerfil = new BMPerfil(); return(bmPerfil.ObterTodos()); }