diff options
| author | Roy Ben Shabat <Roy.mail.net@gmail.com> | 2024-12-09 10:21:13 +0200 |
|---|---|---|
| committer | Roy Ben Shabat <Roy.mail.net@gmail.com> | 2024-12-09 10:21:13 +0200 |
| commit | 7ae452b5edf226e02de077b0181bd50723124fbb (patch) | |
| tree | 5a4b945b945e75a28f9144e2567596a539302d84 /Software/Visual_Studio/Tango.BL | |
| parent | 065e754c221e69b7c12b72c92a0d6168623449d4 (diff) | |
| download | Tango-7ae452b5edf226e02de077b0181bd50723124fbb.tar.gz Tango-7ae452b5edf226e02de077b0181bd50723124fbb.zip | |
Minor fixes.
Diffstat (limited to 'Software/Visual_Studio/Tango.BL')
| -rw-r--r-- | Software/Visual_Studio/Tango.BL/Entities/Configuration.cs | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/Software/Visual_Studio/Tango.BL/Entities/Configuration.cs b/Software/Visual_Studio/Tango.BL/Entities/Configuration.cs index 1c9b795fa..2e1ceba67 100644 --- a/Software/Visual_Studio/Tango.BL/Entities/Configuration.cs +++ b/Software/Visual_Studio/Tango.BL/Entities/Configuration.cs @@ -24,6 +24,14 @@ namespace Tango.BL.Entities get { return IdsPacks.Where(x => !x.IsEmpty); } } + [NotMapped] + [XmlIgnore] + [JsonIgnore] + public List<IdsPack> IdsPacksOrderedByPackIndex + { + get { return IdsPacks.OrderBy(x => x.PackIndex).ToList(); } + } + /// <summary> /// Gets a collection of this configuration IDS packs where packs are not 'empty' and are supported by the specified <see cref="Rml"/>. /// </summary> |
