public DatabaseProject(int id, string projectname, string description, DatabaseUser owner, ProjectType type, ProjectStatus status, ProjectTag tag) { ID = id; Projectname = projectname; Description = description; this.owner = owner; Type = type; Status = status; Tag = tag; }
public DatabaseAsset(int id, string assetname, string notes, DatabaseUser creator, AssetType type, AssetStatus status, string software, int pegiRating = 3) { ID = id; Assetname = assetname; Notes = notes; this.creator = creator; Type = type; Status = status; PegiRating = pegiRating; Software = software; }