blob: 5bc51047401ed55fe1bd329b5e70557133a48afa (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
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);
// });
//}
}
}
|