Renamed folder
This commit is contained in:
@@ -1,4 +1,4 @@
|
|||||||
namespace ApplicationLayer.GeneralNeededServices
|
namespace ApplicationLayer.InfrastructureServicesInterfaces
|
||||||
{
|
{
|
||||||
public interface IDateTimeProvider
|
public interface IDateTimeProvider
|
||||||
{//todo rename folder
|
{//todo rename folder
|
||||||
@@ -1,6 +1,6 @@
|
|||||||
using Domains;
|
using Domains;
|
||||||
|
|
||||||
namespace ApplicationLayer.GeneralNeededServices;
|
namespace ApplicationLayer.InfrastructureServicesInterfaces;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Generic repository pattern
|
/// Generic repository pattern
|
||||||
@@ -1,4 +1,4 @@
|
|||||||
namespace ApplicationLayer.GeneralNeededServices;
|
namespace ApplicationLayer.InfrastructureServicesInterfaces;
|
||||||
|
|
||||||
public interface IUnitOfWork
|
public interface IUnitOfWork
|
||||||
{
|
{
|
||||||
@@ -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;
|
||||||
|
|||||||
@@ -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
|
||||||
|
|||||||
@@ -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;
|
||||||
|
|||||||
@@ -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;
|
||||||
|
|||||||
@@ -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;
|
||||||
|
|||||||
@@ -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;
|
||||||
|
|||||||
@@ -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;
|
||||||
|
|||||||
@@ -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;
|
||||||
|
|||||||
@@ -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;
|
||||||
|
|
||||||
|
|||||||
@@ -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;
|
||||||
|
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
using ApplicationLayer.GeneralNeededServices;
|
using ApplicationLayer.InfrastructureServicesInterfaces;
|
||||||
|
|
||||||
namespace Infrastructure.Common
|
namespace Infrastructure.Common
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -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;
|
||||||
|
|
||||||
|
|||||||
@@ -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;
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
using ApplicationLayer.GeneralNeededServices;
|
using ApplicationLayer.InfrastructureServicesInterfaces;
|
||||||
using Domains;
|
using Domains;
|
||||||
|
|
||||||
namespace Infrastructure.Database.Generic;
|
namespace Infrastructure.Database.Generic;
|
||||||
|
|||||||
@@ -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;
|
||||||
|
|||||||
Reference in New Issue
Block a user