public string GetServiceNowIncident(string URL, string Username, string Password, int ErrorID, string What) { ServiceNow oServiceNow = new ServiceNow(); return(oServiceNow.GetIncident(URL, Username, Password, ErrorID, What)); }
public string RecomServiceNowServer(string URL, string Username, string Password, string Name) { ServiceNow oServiceNow = new ServiceNow(); return(oServiceNow.DecomServer(URL, Username, Password, Name, ServiceNowDecom.Recommission)); }
public string GetServiceNowIncidentNumber(string URL, string Username, string Password, string Number) { ServiceNow oServiceNow = new ServiceNow(); return(oServiceNow.GetIncident(URL, Username, Password, Number)); }
public string GetServiceNowServer(string URL, string Username, string Password, string Name) { ServiceNow oServiceNow = new ServiceNow(); return(oServiceNow.GetServer(URL, Username, Password, Name)); }