blob: c38c281b43bc11e42eb7dd514ae50b2109994ad9 (
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
27
28
29
|
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Tango.Core.DI;
namespace Tango.FSE.BL.Web
{
public class FSEWebClient : FSEWebClientBase
{
public FSEWebClient() : base(String.Empty)
{
}
public FSEWebClient(string address) : base(address)
{
}
public FSEWebClient(FSEWebClientBase cloned) : base(cloned)
{
}
public FSEWebClient(string address, string token) : base(address, token)
{
}
}
}
|