Пример #1
0
 public string GetConfigFolder(string app, CustomApp custom_app)
 {
     if (custom_app != null)
     {
         return(custom_app.ConfigFolder);
     }
     else
     {
         return(_getConfType(app).ConfigFolder);
     }
 }
Пример #2
0
 public string GetYamlCollectionName(string app, CustomApp custom_app)
 {
     if (custom_app != null)
     {
         return(custom_app.YamlCollectionName);
     }
     else
     {
         return(_getConfType(app).YamlCollectionName);
     }
 }
Пример #3
0
 public string[] GetRestartServices(string app, CustomApp custom_app)
 {
     if (custom_app != null)
     {
         return(custom_app.RestartServices);
     }
     else
     {
         return(_getConfType(app).RestartServices);
     }
 }