public dynamic ObtenerParametros()
 {
     try
     {
         Logger.Info();
         var checkListRoladoraAccionDal = new Integracion.DAL.Implementacion.CheckListRoladoraAccionDAL();
         IList <CheckListRoladoraAccionInfo> parametros = checkListRoladoraAccionDal.ObtenerParametros();
         dynamic parametrosPorTipo = ObtenerParametrosPorTipo(parametros);
         return(parametrosPorTipo);
     }
     catch (ExcepcionGenerica)
     {
         throw;
     }
     catch (Exception ex)
     {
         Logger.Error(ex);
         throw new ExcepcionDesconocida(MethodBase.GetCurrentMethod(), ex);
     }
 }