/// <summary>
 /// Remove certificate from Central SSL store or Certificate store
 /// </summary>
 /// <param name="thumbprint"></param>
 /// <param name="store"></param>
 public static void DeleteCertificate(string thumbprint)
 {
     if (_options.CentralSsl)
     {
         _log.Information("Removing certificate from the Central SSL store");
         _centralSslService.UninstallCertificate(thumbprint);
     }
     else
     {
         _log.Information("Uninstalling certificate from the certificate store");
         _certificateStoreService.UninstallCertificate(thumbprint);
     }
 }