aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/Tango.BL/Builders/IEntityCollectionBuilder.cs
blob: c960b414f2e1813e048bfb5b240ffd4fbc4001f6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Tango.Core;

namespace Tango.BL.Builders
{
    public interface IEntityCollectionBuilder<T> where T : ObservableEntity<T>
    {
        SynchronizedObservableCollection<T> Build();
        Task<SynchronizedObservableCollection<T>> BuildAsync();
    }
}