예제 #1
0
 public List <Nivel2> ObtenerNivel2(int idArea, int idTipoArbol, int idTipoUsuario, int idNivel1, bool insertarSeleccion)
 {
     try
     {
         using (BusinessArbolAcceso negocio = new BusinessArbolAcceso())
         {
             return(negocio.ObtenerNivel2(idArea, idTipoArbol, idTipoUsuario, idNivel1, insertarSeleccion));
         }
     }
     catch (Exception ex)
     {
         throw new Exception(ex.Message);
     }
 }