Skip to content

Commit

Permalink
Merge pull request #7 from IliyanIlievPH/2
Browse files Browse the repository at this point in the history
Closes #2
  • Loading branch information
PaterSantyago committed Apr 14, 2020
2 parents e75932a + f9d85aa commit 47f19cf
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 13 deletions.
4 changes: 2 additions & 2 deletions client/MAVN.Service.QuorumExplorer.Client/AutofacExtension.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using Autofac;
using Autofac;
using JetBrains.Annotations;
using Lykke.HttpClientGenerator;
using Lykke.HttpClientGenerator.Infrastructure;
Expand Down Expand Up @@ -30,7 +30,7 @@ public static class AutofacExtension
if (string.IsNullOrWhiteSpace(settings.ServiceUrl))
throw new ArgumentException("Value cannot be null or whitespace.", nameof(QuorumExplorerServiceClientSettings.ServiceUrl));

var clientBuilder = HttpClientGenerator.HttpClientGenerator.BuildForUrl(settings.ServiceUrl)
var clientBuilder = HttpClientGenerator.BuildForUrl(settings.ServiceUrl)
.WithAdditionalCallsWrapper(new ExceptionHandlerCallsWrapper());

clientBuilder = builderConfigure?.Invoke(clientBuilder) ?? clientBuilder.WithoutRetries();
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using System.Collections.Generic;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using Lykke.Common.MsSql;
Expand All @@ -10,7 +10,7 @@
using MAVN.Service.QuorumExplorer.MsSqlRepositories.Extensions;
using Microsoft.EntityFrameworkCore;
using Nethereum.Util;
using EventInfo = Lykke.Service.QuorumExplorer.Domain.DTOs.EventInfo;
using EventInfo = MAVN.Service.QuorumExplorer.Domain.DTOs.EventInfo;

namespace MAVN.Service.QuorumExplorer.MsSqlRepositories
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
using System.Net;
using System.Net;
using System.Threading.Tasks;
using AutoMapper;
using MAVN.Service.QuorumExplorer.Client;
using MAVN.Service.QuorumExplorer.Client.Models;
using MAVN.Service.QuorumExplorer.Domain.DTOs;
using MAVN.Service.QuorumExplorer.Domain.Services.Explorer;
using Microsoft.AspNetCore.Mvc;
using TransactionDetailedInfo = Lykke.Service.QuorumExplorer.Client.Models.TransactionDetailedInfo;
using TransactionDetailedInfo = MAVN.Service.QuorumExplorer.Client.Models.TransactionDetailedInfo;

namespace MAVN.Service.QuorumExplorer.Controllers
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
using AutoMapper;
using AutoMapper;
using MAVN.Service.QuorumExplorer.Client.Models;
using MAVN.Service.QuorumExplorer.Domain.DTOs;
using Event = Lykke.Service.QuorumExplorer.Client.Models.Event;
using EventParameter = Lykke.Service.QuorumExplorer.Domain.DTOs.EventParameter;
using FunctionCall = Lykke.Service.QuorumExplorer.Domain.DTOs.FunctionCall;
using FunctionCallParameter = Lykke.Service.QuorumExplorer.Domain.DTOs.FunctionCallParameter;
using TransactionDetailedInfo = Lykke.Service.QuorumExplorer.Domain.DTOs.TransactionDetailedInfo;
using TransactionLog = Lykke.Service.QuorumExplorer.Domain.DTOs.TransactionLog;
using Event = MAVN.Service.QuorumExplorer.Client.Models.Event;
using EventParameter = MAVN.Service.QuorumExplorer.Domain.DTOs.EventParameter;
using FunctionCall = MAVN.Service.QuorumExplorer.Domain.DTOs.FunctionCall;
using FunctionCallParameter = MAVN.Service.QuorumExplorer.Domain.DTOs.FunctionCallParameter;
using TransactionDetailedInfo = MAVN.Service.QuorumExplorer.Domain.DTOs.TransactionDetailedInfo;
using TransactionLog = MAVN.Service.QuorumExplorer.Domain.DTOs.TransactionLog;

namespace MAVN.Service.QuorumExplorer.MappingProfiles
{
Expand Down

0 comments on commit 47f19cf

Please sign in to comment.