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) { } } }