public ApplicationLevelInformation UpdateApplicationLevelInformation(ApplicationLevelInformation info)
 {
     return info;
 }
 public ApplicationLevelInformation UpdateApplicationLevelInformation(ApplicationLevelInformation info)
 {
     try
     {
         return (ApplicationLevelInformation)server.GetDatabase("application").SaveDocument(info);
     }
     catch (CouchException e)
     {
         ProviderMonitor.HealthCheck(() => { /*Everything is AOk*/});
         return new ApplicationLevelInformation();
     }
 }