public Group() { this.Organizations = new HashSet <Organization>(); this.DataMarts = new HashSet <DataMart>(); this.Projects = new HashSet <Project>(); this.SID = UserDefinedFunctions.NewGuid(); }
public Project() { this.SID = UserDefinedFunctions.NewGuid(); this.DataMarts = new HashSet <DataMart>(); this.SecurityGroups = new HashSet <ProjectSecurityGroup>(); this.Activities = new HashSet <Activity>(); }
public Registry() { Id = UserDefinedFunctions.NewGuid(); Type = RegistryTypes.Registry; Items = new HashSet <RegistryItemDefinition>(); Organizations = new HashSet <OrganizationRegistry>(); }
public User() { this.UserPasswordTraces = new HashSet <UserPasswordTrace>(); this.SID = UserDefinedFunctions.NewGuid(); this.Subscriptions = new HashSet <Subscription>(); this.PasswordExpiration = DateTime.Now.AddMonths(6); this.PasswordRestorationTokenExpiration = DateTime.Now; }
public DataMart() { this.Routings = new HashSet <RequestRouting>(); this.Groups = new HashSet <Group>(); this.Projects = new HashSet <Project>(); this.InstalledModels = new HashSet <DataMartInstalledModel>(); this.UnattendedMode = UnattendedModeKind.NoUnattendedOperation; this.SID = UserDefinedFunctions.NewGuid(); this.DataMartTypeId = 1; }
public Organization() { this.Users = new HashSet <User>(); this.Groups = new HashSet <Group>(); this.DataMarts = new HashSet <DataMart>(); this.Children = new HashSet <Organization>(); this.SecurityGroups = new HashSet <OrganizationSecurityGroup>(); this.Requests = new HashSet <Request>(); this.Registries = new HashSet <OrganizationRegistry>(); this.SID = UserDefinedFunctions.NewGuid(); this.EHRSes = new HashSet <OrganizationEHRS>(); this.InSearchResults = new HashSet <Request>(); }
public Request() { Updated = Created = DateTime.Now; this.Routings = new HashSet <RequestRouting>(); //this.Documents = new HashSet<Document>(); this.SID = UserDefinedFunctions.NewGuid(); this.SearchTerms = new HashSet <RequestSearchTerm>(); this.RequestSearchResults = new HashSet <Request>(); this.DataMartSearchResults = new HashSet <DataMart>(); this.OrganizationSearchResults = new HashSet <Organization>(); this.InResults = new HashSet <Request>(); this.Folders = new HashSet <RequestSharedFolder>(); }
public Document() { this.ID = UserDefinedFunctions.NewGuid(); }
public RequestSharedFolder() { this.Requests = new HashSet <Request>(); this.SID = UserDefinedFunctions.NewGuid(); }
public NetworkMessage() { Id = UserDefinedFunctions.NewGuid(); }
public SecurityGroup() { this.SID = UserDefinedFunctions.NewGuid(); }