Renamed folder

This commit is contained in:
2024-08-20 17:00:01 +03:00
parent 564fd1ddbf
commit d082ff90e5
18 changed files with 18 additions and 18 deletions

View File

@@ -1,4 +1,4 @@
namespace ApplicationLayer.GeneralNeededServices
namespace ApplicationLayer.InfrastructureServicesInterfaces
{
public interface IDateTimeProvider
{//todo rename folder

View File

@@ -1,6 +1,6 @@
using Domains;
namespace ApplicationLayer.GeneralNeededServices;
namespace ApplicationLayer.InfrastructureServicesInterfaces;
/// <summary>
/// Generic repository pattern

View File

@@ -1,4 +1,4 @@
namespace ApplicationLayer.GeneralNeededServices;
namespace ApplicationLayer.InfrastructureServicesInterfaces;
public interface IUnitOfWork
{

View File

@@ -1,4 +1,4 @@
using ApplicationLayer.GeneralNeededServices;
using ApplicationLayer.InfrastructureServicesInterfaces;
using Domains.ApplicantDomain;
namespace ApplicationLayer.Services.Applicants.NeededServices;

View File

@@ -1,4 +1,4 @@
using ApplicationLayer.GeneralNeededServices;
using ApplicationLayer.InfrastructureServicesInterfaces;
using Domains.Users;
namespace ApplicationLayer.Services.AuthServices.NeededServices

View File

@@ -1,4 +1,4 @@
using ApplicationLayer.GeneralNeededServices;
using ApplicationLayer.InfrastructureServicesInterfaces;
using ApplicationLayer.Services.Applicants.NeededServices;
using ApplicationLayer.Services.AuthServices.NeededServices;
using ApplicationLayer.Services.AuthServices.RegisterService.Exceptions;

View File

@@ -1,4 +1,4 @@
using ApplicationLayer.GeneralNeededServices;
using ApplicationLayer.InfrastructureServicesInterfaces;
using Domains.LocationDomain;
namespace ApplicationLayer.Services.Locations.NeededServices;

View File

@@ -1,4 +1,4 @@
using ApplicationLayer.GeneralNeededServices;
using ApplicationLayer.InfrastructureServicesInterfaces;
using Domains.LocationDomain;
namespace ApplicationLayer.Services.Locations.NeededServices;

View File

@@ -1,4 +1,4 @@
using ApplicationLayer.GeneralNeededServices;
using ApplicationLayer.InfrastructureServicesInterfaces;
using ApplicationLayer.Services.Locations.NeededServices;
using ApplicationLayer.Services.Locations.RequestHandlers.Exceptions;
using ApplicationLayer.Services.Locations.Requests;

View File

@@ -1,4 +1,4 @@
using ApplicationLayer.GeneralNeededServices;
using ApplicationLayer.InfrastructureServicesInterfaces;
using ApplicationLayer.Services.Applicants.NeededServices;
using ApplicationLayer.Services.Locations.NeededServices;
using ApplicationLayer.Services.VisaApplications.Models;

View File

@@ -1,4 +1,4 @@
using ApplicationLayer.GeneralNeededServices;
using ApplicationLayer.InfrastructureServicesInterfaces;
using Domains.VisaApplicationDomain;
namespace ApplicationLayer.Services.VisaApplications.NeededServices;

View File

@@ -1,5 +1,5 @@
using System.IdentityModel.Tokens.Jwt;
using ApplicationLayer.GeneralNeededServices;
using ApplicationLayer.InfrastructureServicesInterfaces;
using ApplicationLayer.Services.AuthServices.NeededServices;
using Microsoft.Extensions.DependencyInjection;

View File

@@ -1,6 +1,6 @@
using System.IdentityModel.Tokens.Jwt;
using System.Security.Claims;
using ApplicationLayer.GeneralNeededServices;
using ApplicationLayer.InfrastructureServicesInterfaces;
using ApplicationLayer.Services.AuthServices.NeededServices;
using Domains.Users;

View File

@@ -1,4 +1,4 @@
using ApplicationLayer.GeneralNeededServices;
using ApplicationLayer.InfrastructureServicesInterfaces;
namespace Infrastructure.Common
{

View File

@@ -1,5 +1,5 @@
using System.Reflection;
using ApplicationLayer.GeneralNeededServices;
using ApplicationLayer.InfrastructureServicesInterfaces;
using Infrastructure.Database.Generic;
using Microsoft.EntityFrameworkCore;

View File

@@ -1,4 +1,4 @@
using ApplicationLayer.GeneralNeededServices;
using ApplicationLayer.InfrastructureServicesInterfaces;
using Domains;
using Infrastructure.Database.GeneralExceptions;
using Microsoft.EntityFrameworkCore;

View File

@@ -1,4 +1,4 @@
using ApplicationLayer.GeneralNeededServices;
using ApplicationLayer.InfrastructureServicesInterfaces;
using Domains;
namespace Infrastructure.Database.Generic;

View File

@@ -1,4 +1,4 @@
using ApplicationLayer.GeneralNeededServices;
using ApplicationLayer.InfrastructureServicesInterfaces;
using ApplicationLayer.Services.Applicants.NeededServices;
using ApplicationLayer.Services.AuthServices.NeededServices;
using ApplicationLayer.Services.Locations.NeededServices;