ATUL_v1.ATUL.UpSertProvider C# (CSharp) Method

UpSertProvider() private method

private UpSertProvider ( string queue, string ServiceProviderXML ) : bool
queue string
ServiceProviderXML string
return bool
        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;
        }
ATUL