Exemplo n.º 1
0
 public RequisicaoCliente(IServiceLocator locator)
 {
     parametrosSistema = locator.Resolve <IParametrosSistema>();
     httpClient        = locator.Resolve <IHttpClient>();
 }
Exemplo n.º 2
0
 public RequisicaoCliente(IFactoryParametrosSistema factoryParametrosSistema, IHttpClient httpClient)
 {
     parametrosSistema = factoryParametrosSistema.ObterParametrosSistema();
     this.httpClient   = httpClient;
 }
Exemplo n.º 3
0
 public RequisicaoCliente()
 {
     parametrosSistema = new ParametrosSistema();
     client            = new HttpClient();
 }