diff options
| author | Roy Ben Shabat <Roy.mail.net@gmail.com> | 2019-12-07 20:10:55 +0200 |
|---|---|---|
| committer | Roy Ben Shabat <Roy.mail.net@gmail.com> | 2019-12-07 20:10:55 +0200 |
| commit | a6e6af346bf160b4a83163a6f1b268920cf2005c (patch) | |
| tree | 5ac37a4c97cc4d6a65bc0c589ceea74519094f34 /Software/Visual_Studio/Tango.BL/Builders | |
| parent | 40622a28006ffd38ce5b85ac49502804d65b9357 (diff) | |
| download | Tango-a6e6af346bf160b4a83163a6f1b268920cf2005c.tar.gz Tango-a6e6af346bf160b4a83163a6f1b268920cf2005c.zip | |
Implemented machine updates history on machine designer.
Related Work Items: #1618
Diffstat (limited to 'Software/Visual_Studio/Tango.BL/Builders')
| -rw-r--r-- | Software/Visual_Studio/Tango.BL/Builders/TangoUpdatesCollectionBuilder.cs | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/Software/Visual_Studio/Tango.BL/Builders/TangoUpdatesCollectionBuilder.cs b/Software/Visual_Studio/Tango.BL/Builders/TangoUpdatesCollectionBuilder.cs new file mode 100644 index 000000000..5bc510474 --- /dev/null +++ b/Software/Visual_Studio/Tango.BL/Builders/TangoUpdatesCollectionBuilder.cs @@ -0,0 +1,26 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using Tango.BL.Entities; +using System.Data.Entity; + +namespace Tango.BL.Builders +{ + public class TangoUpdatesCollectionBuilder : EntityCollectionBuilderBase<TangoUpdate, TangoUpdatesCollectionBuilder> + { + public TangoUpdatesCollectionBuilder(ObservablesContext context) : base(context) + { + + } + + //public virtual TangoUpdatesCollectionBuilder ForMachine(String machineGuid) + //{ + // return AddQueryStep(1, (query) => + // { + // return query.Where(x => x.MachineGuid == machineGuid); + // }); + //} + } +} |
