Esempio n. 1
0
 public AceStruct(AceStruct other)
 {
     PrincipalName        = other.PrincipalName;
     CatalogOperations    = other.CatalogOperations;
     ReportOperations     = other.ReportOperations;
     FolderOperations     = other.FolderOperations;
     ResourceOperations   = other.ResourceOperations;
     DatasourceOperations = other.DatasourceOperations;
     ModelOperations      = other.ModelOperations;
     ModelItemOperations  = other.ModelItemOperations;
 }
Esempio n. 2
0
 public AceStruct(string name)
 {
     PrincipalName        = name;
     CatalogOperations    = new CatalogOperationsCollection();
     ReportOperations     = new ReportOperationsCollection();
     FolderOperations     = new FolderOperationsCollection();
     ResourceOperations   = new ResourceOperationsCollection();
     DatasourceOperations = new DatasourceOperationsCollection();
     ModelOperations      = new ModelOperationsCollection();
     ModelItemOperations  = new ModelItemOperationsCollection();
 }