aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/Tango.BL/Builders/IEntityBuilder.cs
blob: 91041230737566b8cf9b4f3f32acbf2fda099ff2 (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.Linq.Expressions;
using System.Text;
using System.Threading.Tasks;

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