diff --git a/src/MAVN.Service.NotificationSystemBroker.MsSqlRepositories/AutofacModule.cs b/src/MAVN.Service.NotificationSystemBroker.MsSqlRepositories/AutofacModule.cs index bf3b525..e3c6843 100644 --- a/src/MAVN.Service.NotificationSystemBroker.MsSqlRepositories/AutofacModule.cs +++ b/src/MAVN.Service.NotificationSystemBroker.MsSqlRepositories/AutofacModule.cs @@ -1,5 +1,5 @@ using Autofac; -using Lykke.Common.MsSql; +using MAVN.Common.MsSql; using MAVN.Service.NotificationSystemBroker.Domain.Repositories; using MAVN.Service.NotificationSystemBroker.MsSqlRepositories.Repositories; diff --git a/src/MAVN.Service.NotificationSystemBroker.MsSqlRepositories/MAVN.Service.NotificationSystemBroker.MsSqlRepositories.csproj b/src/MAVN.Service.NotificationSystemBroker.MsSqlRepositories/MAVN.Service.NotificationSystemBroker.MsSqlRepositories.csproj index daf8d85..fe70a4d 100644 --- a/src/MAVN.Service.NotificationSystemBroker.MsSqlRepositories/MAVN.Service.NotificationSystemBroker.MsSqlRepositories.csproj +++ b/src/MAVN.Service.NotificationSystemBroker.MsSqlRepositories/MAVN.Service.NotificationSystemBroker.MsSqlRepositories.csproj @@ -7,7 +7,7 @@ - + diff --git a/src/MAVN.Service.NotificationSystemBroker.MsSqlRepositories/NotificationSystemBrokerContext.cs b/src/MAVN.Service.NotificationSystemBroker.MsSqlRepositories/NotificationSystemBrokerContext.cs index e638860..a7de480 100644 --- a/src/MAVN.Service.NotificationSystemBroker.MsSqlRepositories/NotificationSystemBrokerContext.cs +++ b/src/MAVN.Service.NotificationSystemBroker.MsSqlRepositories/NotificationSystemBrokerContext.cs @@ -1,6 +1,6 @@ using System.Data.Common; using JetBrains.Annotations; -using Lykke.Common.MsSql; +using MAVN.Common.MsSql; using MAVN.Service.NotificationSystemBroker.MsSqlRepositories.Entities; using Microsoft.EntityFrameworkCore; diff --git a/src/MAVN.Service.NotificationSystemBroker.MsSqlRepositories/Repositories/EmailMessageRepository.cs b/src/MAVN.Service.NotificationSystemBroker.MsSqlRepositories/Repositories/EmailMessageRepository.cs index 671273d..3f1dd29 100644 --- a/src/MAVN.Service.NotificationSystemBroker.MsSqlRepositories/Repositories/EmailMessageRepository.cs +++ b/src/MAVN.Service.NotificationSystemBroker.MsSqlRepositories/Repositories/EmailMessageRepository.cs @@ -3,7 +3,7 @@ using System.Linq; using System.Threading.Tasks; using AutoMapper; -using Lykke.Common.MsSql; +using MAVN.Common.MsSql; using MAVN.Service.NotificationSystemBroker.Domain.Entities; using MAVN.Service.NotificationSystemBroker.Domain.Repositories; using MAVN.Service.NotificationSystemBroker.MsSqlRepositories.Entities;