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 public interface IDateTimeProvider
{//todo rename folder {//todo rename folder

View File

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

View File

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

View File

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

View File

@@ -1,4 +1,4 @@
using ApplicationLayer.GeneralNeededServices; using ApplicationLayer.InfrastructureServicesInterfaces;
using Domains.Users; using Domains.Users;
namespace ApplicationLayer.Services.AuthServices.NeededServices 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.Applicants.NeededServices;
using ApplicationLayer.Services.AuthServices.NeededServices; using ApplicationLayer.Services.AuthServices.NeededServices;
using ApplicationLayer.Services.AuthServices.RegisterService.Exceptions; using ApplicationLayer.Services.AuthServices.RegisterService.Exceptions;

View File

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

View File

@@ -1,4 +1,4 @@
using ApplicationLayer.GeneralNeededServices; using ApplicationLayer.InfrastructureServicesInterfaces;
using Domains.LocationDomain; using Domains.LocationDomain;
namespace ApplicationLayer.Services.Locations.NeededServices; 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.NeededServices;
using ApplicationLayer.Services.Locations.RequestHandlers.Exceptions; using ApplicationLayer.Services.Locations.RequestHandlers.Exceptions;
using ApplicationLayer.Services.Locations.Requests; 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.Applicants.NeededServices;
using ApplicationLayer.Services.Locations.NeededServices; using ApplicationLayer.Services.Locations.NeededServices;
using ApplicationLayer.Services.VisaApplications.Models; using ApplicationLayer.Services.VisaApplications.Models;

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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