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;
        }
Exemplo n.º 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);
        }
Exemplo n.º 3
0
 public BaseTest()
 {
     ReportingService =new ApiWrapper();
 }