private void CheckTaskModuleAttribute(TaskModuleAttribute attribute, IModuleConfig config)
 {
     if (attribute.ConfigurationType != config.GetType())
     {
         throw new TypeAccessException(
                   $"config type {config.GetType().Name} not equals attribtue config type {attribute.ConfigurationType}");
     }
 }