示例#1
0
 public AttributeNoDependencyReport(IOrganizationService orgSvc)
 {
     _orgSvc       = orgSvc;
     cInfoProvider = new ComponentInfoProvider(orgSvc);
     _sb           = new StringBuilder();
     _sb.AppendLine("Name,Id,Type,Entity Logical Name,Managed,Has Data");
 }
示例#2
0
 public SolutionComponentDependencyReport(IOrganizationService orgSvc)
 {
     _orgSvc           = orgSvc;
     _componentTypeDao = new ComponentInfoProvider(orgSvc);
     //The ComponentType global Option Set contains options for each possible component.
     _componentTypeOptionSet = GlobalOptionSetDao.GetMetadata(_orgSvc, "componenttype");
 }