示例#1
0
        public static List <SYS_Grupo> SelecionarGruposPorIdSistema(int sistemaId)
        {
            SYS_GrupoDAO dao = new SYS_GrupoDAO();

            try
            {
                return(dao.SelecionarGruposPorIdSistema(sistemaId));
            }
            catch
            {
                throw;
            }
        }
示例#2
0
        public static List <SYS_Grupo> SelecionarGrupoPorId(Guid grupoId)
        {
            SYS_GrupoDAO dao = new SYS_GrupoDAO();

            try
            {
                return(dao.SelecionarGrupoPorId(grupoId));
            }
            catch
            {
                throw;
            }
        }