public ScorecardsDepartmentsNodesPath(StratsysAuthentication authentication,
            Path path)
        {
            m_authentication = authentication;
            m_path = path;
            m_descriptionFieldValueService = new GenericService(authentication, path.Descriptionfields);
            m_nodeKeywordService = new GenericService(authentication, path.Keywords);
            m_nodeExternalPageService = new GenericService(authentication, path.ExternalPages);

            m_scorecardsDepartmentsNodesResponsibilityRolesPath =
                new ScorecardsDepartmentsNodesResponsibilityRolesPath(authentication, path.Resource("responsibilityroles"));
        }
 public ApplicationService(StratsysAuthentication authentication) : base(authentication)
 {
     Applications = new ApplicationResource(this);
 }
 public ScorecardsPath(StratsysAuthentication authentication, string id)
 {
     m_authentication = authentication;
     m_id = id;
     m_scorecardColumnService = new ScorecardColumnService(authentication);
 }
 public ScorecardsDepartmentsNodesResponsibilityRolesPath(
     StratsysAuthentication authentication,
     Path path)
 {
     m_nodeUserService = new GenericService(authentication, path.Resource("users").Build());
 }
 public ActivityService(StratsysAuthentication authentication) : base(authentication)
 {
     Activities = new ActivityResource(this);
 }
 public DepartmentService(StratsysAuthentication authentication)
     : base(authentication)
 {
     Departments = new DepartmentResource(this);
 }
 public DescriptionFieldService(StratsysAuthentication authentication)
     : base(authentication)
 {
     DescriptionFields = new DescriptionFieldResource(this);
 }
 public ScorecardsDepartmentsPath(StratsysAuthentication authentication,
     Path path)
 {
     m_authentication = authentication;
     m_path = path;
 }
 public ResponsibilityRoleService(StratsysAuthentication authentication)
     : base(authentication)
 {
     ResponsibilityRoles = new ResponsibilityRoleResource(this);
 }
 public ScorecardColumnPath(StratsysAuthentication authentication, string id)
 {
     m_service = new GenericService(authentication, Path.ScorecardColumn(id).ResponsibilityRoles);
     m_service2 = new GenericService(authentication, Path.ScorecardColumn(id).Descriptionfields);
 }
Example #11
0
 public GroupService(StratsysAuthentication authentication)
     : base(authentication)
 {
     Groups = new GroupResource(this);
 }
 public ExternalPageService(StratsysAuthentication authentication)
     : base(authentication)
 {
     ExternalPages = new ExternalPageResource(this);
 }
 public PeriodicityService(StratsysAuthentication authentication)
     : base(authentication)
 {
     Periodicities = new PeriodicityResource(this);
 }
 public KeywordGroupService(StratsysAuthentication authentication)
     : base(authentication)
 {
     Keywordgroups = new KeywordGroupResource(this);
 }
Example #15
0
 public GoalService(StratsysAuthentication authentication)
     : base(authentication)
 {
     Goals = new GoalResource(this);
 }
Example #16
0
 public UserService(StratsysAuthentication authentication)
     : base(authentication)
 {
     Users = new UserResource(this);
 }
Example #17
0
 public KpiService(StratsysAuthentication authentication)
     : base(authentication)
 {
     Kpis = new KpiResource(this);
 }
 public ScorecardViewService(StratsysAuthentication authentication)
     : base(authentication)
 {
     ScorecardViews = new ScorecardViewResource(this);
 }
 public ScorecardColumnService(StratsysAuthentication authentication)
     : base(authentication)
 {
     m_authentication = authentication;
     ScorecardColumns = new ScorecardColumnResource(this);
 }
 public KpiColumnService(StratsysAuthentication authentication)
     : base(authentication)
 {
     KpiColumns = new KpiColumnResource(this);
 }
 public DasbhoardService(StratsysAuthentication authentication)
     : base(authentication)
 {
     Dashboards = new DashboardResource(this);
 }
 public KpiDataService(StratsysAuthentication authentication)
     : base(authentication)
 {
     KpiData = new KpiDataResource(this);
 }
 public StatusService(StratsysAuthentication authentication) : base(authentication)
 {
     Statuses = new StatusResource(this);
 }
 public ReportListService(StratsysAuthentication authentication)
     : base(authentication)
 {
     ReportLists = new ReportListResource(this);
 }
 public CommentService(StratsysAuthentication authentication) : base(authentication)
 {
     Comments = new CommentResource(this);
 }
 public VersionService(StratsysAuthentication authentication) : base(authentication)
 {
     Versions=new VersionResource(this);
 }
 public IdMappingService(StratsysAuthentication authentication)
     : base(authentication)
 {
     IdMappings = new IdMappingResource(this);
 }