blob: 06d326feef6010202c0382755628fe58c6171063 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Tango.FSE.BL.Services;
namespace Tango.FSE.BL
{
public class FSEServicesContainer
{
public MachinesService MachinesService { get; private set; }
public FSEServicesContainer(IAuthenticationService authentication)
{
MachinesService = new MachinesService(authentication);
}
}
}
|