Пример #1
0
 public AceStruct(AceStruct other)
 {
     this.PrincipalName        = other.PrincipalName;
     this.CatalogOperations    = other.CatalogOperations;
     this.ReportOperations     = other.ReportOperations;
     this.FolderOperations     = other.FolderOperations;
     this.ResourceOperations   = other.ResourceOperations;
     this.DatasourceOperations = other.DatasourceOperations;
     this.ModelOperations      = other.ModelOperations;
     this.ModelItemOperations  = other.ModelItemOperations;
 }
Пример #2
0
 public AceStruct(string name)
 {
     this.PrincipalName        = name;
     this.CatalogOperations    = new CatalogOperationsCollection();
     this.ReportOperations     = new ReportOperationsCollection();
     this.FolderOperations     = new FolderOperationsCollection();
     this.ResourceOperations   = new ResourceOperationsCollection();
     this.DatasourceOperations = new DatasourceOperationsCollection();
     this.ModelOperations      = new ModelOperationsCollection();
     this.ModelItemOperations  = new ModelItemOperationsCollection();
 }