public List<Entry> All(string projectId)
        {
            Logger.DebugFormat("BEGIN MandatoryUserFilter.All ProjectId={0}", projectId);

            CheckAuthentication();
            var results = new ApiWrapper().Query(projectId, ObjectTypes.UserFilter);

            Logger.DebugFormat("END MandatoryUserFilter.All");
            return results;
        }
Пример #2
0
        public List <Entry> All(string projectId)
        {
            Logger.DebugFormat("BEGIN MandatoryUserFilter.All ProjectId={0}", projectId);

            CheckAuthentication();
            var results = new ApiWrapper().Query(projectId, ObjectTypes.UserFilter);

            Logger.DebugFormat("END MandatoryUserFilter.All");
            return(results);
        }
Пример #3
0
 public BaseTest()
 {
     ReportingService =new ApiWrapper();
 }