Skip to content

Commit

Permalink
Merge pull request #9 from IliyanIlievPH/8
Browse files Browse the repository at this point in the history
Closes #8
  • Loading branch information
thelittledevops committed May 11, 2020
2 parents dd4e69e + 4ef9cbb commit 7f21e3d
Show file tree
Hide file tree
Showing 44 changed files with 136 additions and 138 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@
<None Remove="MAVN.Service.PartnersPayments.Client.xml" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Falcon.Numerics" Version="0.1.1" />
<PackageReference Include="Lykke.HttpClientGenerator" Version="2.5.0" />
<PackageReference Include="Lykke.SettingsReader" Version="5.2.0" />
<PackageReference Include="MAVN.Numerics" Version="1.0.0" />
<PackageReference Include="Refit" Version="4.6.107" />
</ItemGroup>
</Project>
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
using System.ComponentModel.DataAnnotations;
using Falcon.Numerics;
using MAVN.Numerics;

namespace MAVN.Service.PartnersPayments.Client.Models
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
using System;
using Falcon.Numerics;
using MAVN.Numerics;
using MAVN.Service.PartnersPayments.Client.Enums;

namespace MAVN.Service.PartnersPayments.Client.Models
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
using System;
using System.ComponentModel.DataAnnotations;
using Falcon.Numerics;
using MAVN.Numerics;

namespace MAVN.Service.PartnersPayments.Client.Models
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
using System;
using Falcon.Numerics;
using MAVN.Numerics;
using MAVN.Service.PartnersPayments.Client.Enums;

namespace MAVN.Service.PartnersPayments.Client.Models
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Falcon.Numerics" Version="0.1.1" />
<PackageReference Include="JetBrains.Annotations" Version="2019.1.1" />
<PackageReference Include="MAVN.Numerics" Version="1.0.0" />
</ItemGroup>

</Project>
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
using System;
using Falcon.Numerics;
using MAVN.Numerics;
using JetBrains.Annotations;

namespace MAVN.Service.PartnersPayments.Contract
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
using System;
using Falcon.Numerics;
using MAVN.Numerics;
using JetBrains.Annotations;

namespace MAVN.Service.PartnersPayments.Contract
Expand Down
12 changes: 6 additions & 6 deletions src/MAVN.Job.PartnersPayments/Modules/DataLayerModule.cs
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
using Autofac;
using Autofac;
using JetBrains.Annotations;
using Lykke.Common.MsSql;
using Lykke.SettingsReader;
using MAVN.Common.MsSql;
using MAVN.Job.PartnersPayments.Settings;
using MAVN.Job.PartnersPayments.Settings.JobSettings;
using MAVN.Service.PartnersPayments.Domain.Repositories;
using MAVN.Service.PartnersPayments.MsSqlRepositories;
using MAVN.Service.PartnersPayments.MsSqlRepositories.Repositories;
using Lykke.Job.PartnersPayments.Settings;
using Lykke.SettingsReader;
using Lykke.Job.PartnersPayments.Settings.JobSettings;

namespace Lykke.Job.PartnersPayments.Modules
namespace MAVN.Job.PartnersPayments.Modules
{
[UsedImplicitly]
public class DataLayerModule : Module
Expand Down
20 changes: 10 additions & 10 deletions src/MAVN.Job.PartnersPayments/Modules/JobModule.cs
Original file line number Diff line number Diff line change
@@ -1,24 +1,24 @@
using Autofac;
using Autofac;
using Common;
using JetBrains.Annotations;
using Lykke.Job.PartnersPayments.Services;
using Lykke.Job.PartnersPayments.Settings;
using Lykke.Sdk;
using Lykke.Sdk.Health;
using Lykke.Service.CustomerProfile.Client;
using Lykke.Service.PartnerManagement.Client;
using Lykke.SettingsReader;
using MAVN.Job.PartnersPayments.Services;
using MAVN.Job.PartnersPayments.Settings;
using MAVN.Service.CustomerProfile.Client;
using MAVN.Service.EligibilityEngine.Client;
using MAVN.Service.PartnerManagement.Client;
using MAVN.Service.PartnersPayments.Domain.Common;
using MAVN.Service.PartnersPayments.Domain.RabbitMq.Handlers;
using MAVN.Service.PartnersPayments.Domain.Services;
using MAVN.Service.PartnersPayments.DomainServices;
using MAVN.Service.PartnersPayments.DomainServices.Common;
using MAVN.Service.PartnersPayments.DomainServices.RabbitMq.Handlers;
using Lykke.Service.PrivateBlockchainFacade.Client;
using Lykke.Service.WalletManagement.Client;
using Lykke.SettingsReader;
using Lykke.Service.EligibilityEngine.Client;
using MAVN.Service.PrivateBlockchainFacade.Client;
using MAVN.Service.WalletManagement.Client;

namespace Lykke.Job.PartnersPayments.Modules
namespace MAVN.Job.PartnersPayments.Modules
{
[UsedImplicitly]
public class JobModule : Module
Expand Down
8 changes: 4 additions & 4 deletions src/MAVN.Job.PartnersPayments/Modules/RabbitMqModule.cs
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
using Autofac;
using JetBrains.Annotations;
using Lykke.Job.PartnersPayments.Settings;
using Lykke.RabbitMqBroker.Publisher;
using MAVN.Service.PartnersPayments.Contract;

using Lykke.SettingsReader;
using MAVN.Job.PartnersPayments.Settings;
using MAVN.Job.PartnersPayments.Settings.JobSettings;
using MAVN.Service.PartnersPayments.Contract;

namespace Lykke.Job.PartnersPayments.Modules
namespace MAVN.Job.PartnersPayments.Modules
{
[UsedImplicitly]
public class RabbitMqModule : Module
Expand Down
2 changes: 1 addition & 1 deletion src/MAVN.Job.PartnersPayments/Program.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using System.Threading.Tasks;
using Lykke.Sdk;

namespace Lykke.Job.PartnersPayments
namespace MAVN.Job.PartnersPayments
{
internal sealed class Program
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
using System;
using System.Threading;
using System.Threading.Tasks;
using Autofac;
using Common;
using Common.Log;
using Lykke.Common.Log;
using MAVN.Service.PartnersPayments.Domain.Services;
using System;
using System.Threading;
using System.Threading.Tasks;

namespace Lykke.Job.PartnersPayments.Services
namespace MAVN.Job.PartnersPayments.Services
{
public class ExpiredRequestsManager : IStartable, IStopable
{
Expand Down
2 changes: 1 addition & 1 deletion src/MAVN.Job.PartnersPayments/Services/ShutdownManager.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
using Lykke.Common.Log;
using Lykke.Sdk;

namespace Lykke.Job.PartnersPayments.Services
namespace MAVN.Job.PartnersPayments.Services
{
public class ShutdownManager : IShutdownManager
{
Expand Down
2 changes: 1 addition & 1 deletion src/MAVN.Job.PartnersPayments/Services/StartupManager.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
using Lykke.Common;
using Lykke.Sdk;

namespace Lykke.Job.PartnersPayments.Services
namespace MAVN.Job.PartnersPayments.Services
{
public class StartupManager : IStartupManager
{
Expand Down
18 changes: 9 additions & 9 deletions src/MAVN.Job.PartnersPayments/Settings/AppSettings.cs
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
using System;
using Lykke.Job.PartnersPayments.Settings.JobSettings;
using System;
using Lykke.Sdk.Settings;
using Lykke.Service.CustomerProfile.Client;
using Lykke.Service.EligibilityEngine.Client;
using Lykke.Service.PartnerManagement.Client;
using Lykke.Service.PrivateBlockchainFacade.Client;
using Lykke.Service.WalletManagement.Client;

namespace Lykke.Job.PartnersPayments.Settings
using MAVN.Job.PartnersPayments.Settings.JobSettings;
using MAVN.Service.CustomerProfile.Client;
using MAVN.Service.EligibilityEngine.Client;
using MAVN.Service.PartnerManagement.Client;
using MAVN.Service.PrivateBlockchainFacade.Client;
using MAVN.Service.WalletManagement.Client;

namespace MAVN.Job.PartnersPayments.Settings
{
public class AppSettings : BaseAppSettings
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
using JetBrains.Annotations;

namespace Lykke.Job.PartnersPayments.Settings.JobSettings
namespace MAVN.Job.PartnersPayments.Settings.JobSettings
{
[UsedImplicitly(ImplicitUseTargetFlags.WithMembers)]
public class Constants
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
using Lykke.SettingsReader.Attributes;

namespace Lykke.Job.PartnersPayments.Settings.JobSettings
namespace MAVN.Job.PartnersPayments.Settings.JobSettings
{
public class DbSettings
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
using System;

namespace Lykke.Job.PartnersPayments.Settings.JobSettings
namespace MAVN.Job.PartnersPayments.Settings.JobSettings
{
public class PartnersPaymentsJobSettings
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
using Lykke.SettingsReader.Attributes;

namespace Lykke.Job.PartnersPayments.Settings
namespace MAVN.Job.PartnersPayments.Settings.JobSettings
{
public class RabbitMqSettings
{
Expand Down
4 changes: 2 additions & 2 deletions src/MAVN.Job.PartnersPayments/Startup.cs
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
using System;
using JetBrains.Annotations;
using Lykke.Job.PartnersPayments.Settings;
using Lykke.Sdk;
using MAVN.Job.PartnersPayments.Settings;
using Microsoft.AspNetCore.Builder;
using Microsoft.Extensions.DependencyInjection;

namespace Lykke.Job.PartnersPayments
namespace MAVN.Job.PartnersPayments
{
[UsedImplicitly]
public class Startup
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
<Version>1.0.0</Version>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Falcon.Numerics" Version="0.1.1" />
<PackageReference Include="Lykke.Common" Version="7.5.0" />
<PackageReference Include="MAVN.Numerics" Version="1.0.0" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\contract\MAVN.Service.PartnersPayments.Contract\MAVN.Service.PartnersPayments.Contract.csproj" />
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
using System;
using Falcon.Numerics;
using MAVN.Numerics;

namespace MAVN.Service.PartnersPayments.Domain.Models
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
using System;
using Falcon.Numerics;
using MAVN.Numerics;
using MAVN.Service.PartnersPayments.Domain.Enums;

namespace MAVN.Service.PartnersPayments.Domain.Models
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using Falcon.Numerics;
using MAVN.Numerics;

namespace MAVN.Service.PartnersPayments.Domain.Models
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
using System;
using Falcon.Numerics;
using MAVN.Numerics;

namespace MAVN.Service.PartnersPayments.Domain.Models
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
using System;
using System.Threading.Tasks;
using Falcon.Numerics;
using MAVN.Numerics;
using MAVN.Service.PartnersPayments.Domain.Enums;

namespace MAVN.Service.PartnersPayments.Domain.Services
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,16 +6,15 @@
<ItemGroup>
<PackageReference Include="AutoMapper" Version="9.0.0" />
<PackageReference Include="AutoMapper.Extensions.Microsoft.DependencyInjection" Version="7.0.0" />
<PackageReference Include="Falcon.Job.QuorumTransactionWatcher.Contract" Version="4.8.0" />
<PackageReference Include="Falcon.PrivateBlockchain.HospitalityRedeemGateway" Version="2.0.0" />
<PackageReference Include="Falcon.Service.CurrencyConvertor.Client" Version="4.0.0" />
<PackageReference Include="Falcon.Service.CustomerProfile.Client" Version="7.7.0" />
<PackageReference Include="Falcon.Service.EligibilityEngine.Client" Version="3.0.0" />
<PackageReference Include="Falcon.Service.PartnerManagement.Client" Version="3.0.0" />
<PackageReference Include="Falcon.Service.PrivateBlockchainFacade.Client" Version="2.9.0" />
<PackageReference Include="Falcon.Service.PrivateBlockchainFacade.Contract" Version="2.13.0" />
<PackageReference Include="Falcon.Service.WalletManagement.Client" Version="3.5.0" />
<PackageReference Include="Lykke.RabbitMqBroker" Version="7.13.1" />
<PackageReference Include="MAVN.Job.QuorumTransactionWatcher.Contract" Version="1.1.0" />
<PackageReference Include="MAVN.Service.CustomerProfile.Client" Version="1.3.0" />
<PackageReference Include="MAVN.Service.EligibilityEngine.Client" Version="1.1.1" />
<PackageReference Include="MAVN.Service.PartnerManagement.Client" Version="1.4.0" />
<PackageReference Include="MAVN.Service.PrivateBlockchainFacade.Client" Version="1.1.0" />
<PackageReference Include="MAVN.Service.PrivateBlockchainFacade.Contract" Version="1.1.0" />
<PackageReference Include="MAVN.Service.WalletManagement.Client" Version="1.0.1" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\contract\MAVN.Service.PartnersPayments.Contract\MAVN.Service.PartnersPayments.Contract.csproj" />
Expand Down
Original file line number Diff line number Diff line change
@@ -1,23 +1,23 @@
using System;
using System;
using System.Linq;
using System.Threading.Tasks;
using Common.Log;
using Lykke.Common.Log;
using Lykke.RabbitMqBroker.Publisher;
using Lykke.Service.CustomerProfile.Client;
using Lykke.Service.CustomerProfile.Client.Models.Enums;
using Lykke.Service.EligibilityEngine.Client;
using Lykke.Service.EligibilityEngine.Client.Enums;
using Lykke.Service.EligibilityEngine.Client.Models.ConversionRate.Requests;
using Lykke.Service.PartnerManagement.Client;
using MAVN.Service.CustomerProfile.Client;
using MAVN.Service.CustomerProfile.Client.Models.Enums;
using MAVN.Service.EligibilityEngine.Client;
using MAVN.Service.EligibilityEngine.Client.Enums;
using MAVN.Service.EligibilityEngine.Client.Models.ConversionRate.Requests;
using MAVN.Service.PartnerManagement.Client;
using MAVN.Service.PartnersPayments.Contract;
using MAVN.Service.PartnersPayments.Domain.Enums;
using MAVN.Service.PartnersPayments.Domain.Models;
using MAVN.Service.PartnersPayments.Domain.Repositories;
using MAVN.Service.PartnersPayments.Domain.Services;
using MAVN.Service.PartnersPayments.DomainServices.Utils;
using Lykke.Service.WalletManagement.Client;
using Lykke.Service.WalletManagement.Client.Enums;
using MAVN.Service.WalletManagement.Client;
using MAVN.Service.WalletManagement.Client.Enums;

namespace MAVN.Service.PartnersPayments.DomainServices
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,22 +1,22 @@
using System;
using System;
using System.Threading.Tasks;
using Falcon.Numerics;
using MAVN.Numerics;
using Lykke.RabbitMqBroker.Publisher;
using Lykke.Service.EligibilityEngine.Client;
using Lykke.Service.EligibilityEngine.Client.Enums;
using Lykke.Service.EligibilityEngine.Client.Models.ConversionRate.Requests;
using Lykke.Service.EligibilityEngine.Client.Models.ConversionRate.Responses;
using MAVN.Service.EligibilityEngine.Client;
using MAVN.Service.EligibilityEngine.Client.Enums;
using MAVN.Service.EligibilityEngine.Client.Models.ConversionRate.Requests;
using MAVN.Service.EligibilityEngine.Client.Models.ConversionRate.Responses;
using MAVN.Service.PartnersPayments.Contract;
using MAVN.Service.PartnersPayments.Domain.Common;
using MAVN.Service.PartnersPayments.Domain.Enums;
using MAVN.Service.PartnersPayments.Domain.Extensions;
using MAVN.Service.PartnersPayments.Domain.Models;
using MAVN.Service.PartnersPayments.Domain.Repositories;
using MAVN.Service.PartnersPayments.Domain.Services;
using Lykke.Service.PrivateBlockchainFacade.Client;
using Lykke.Service.PrivateBlockchainFacade.Client.Models;
using Lykke.Service.WalletManagement.Client;
using Lykke.Service.WalletManagement.Client.Enums;
using MAVN.Service.PrivateBlockchainFacade.Client;
using MAVN.Service.PrivateBlockchainFacade.Client.Models;
using MAVN.Service.WalletManagement.Client;
using MAVN.Service.WalletManagement.Client.Enums;

namespace MAVN.Service.PartnersPayments.DomainServices
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
using System.Threading.Tasks;
using System.Threading.Tasks;
using Common.Log;
using Lykke.Common.Log;
using Lykke.RabbitMqBroker.Subscriber;
using MAVN.Service.PartnersPayments.Domain.RabbitMq.Handlers;
using Lykke.Service.PrivateBlockchainFacade.Contract.Events;
using MAVN.Service.PrivateBlockchainFacade.Contract.Events;

namespace MAVN.Service.PartnersPayments.DomainServices.RabbitMq.Subscribers
{
Expand Down
Loading

0 comments on commit 7f21e3d

Please sign in to comment.