UpSertProvider() public method

Upsert provider.
public UpSertProvider ( string queue, string providerXML ) : bool
queue string The queue.
providerXML string The provider XML.
return bool
Beispiel #1
0
 public bool UpSertProvider(string queue, string ServiceProviderXML)
 {
     Trace.WriteLine(DateTime.Now + " Upserting Providers");
     bool success = false;
     AtulBusinessLogic adb = new AtulBusinessLogic();
     try
     {
         success = adb.UpSertProvider(queue, ServiceProviderXML);
     }
     catch (Exception e)
     {
         Trace.WriteLineIf(debug, DateTime.Now + " " + e.Message);
         success = false;
     }
     return success;
 }