public RESTQueryResponse <Problem> GetRecordByQuery(string query) { var result = _serviceNowClient.GetByQuery <Problem>(query); return(result); }
public RESTQueryResponse <Task> GetRecordByQuery <TParam>(TParam param) where TParam : class { var result = _serviceNowClient.GetByQuery <Task, TParam>(param); return(result); }