Skip to content

Commit a8e2893

Browse files
committed
Reorganize configuration namespace
1 parent 9e02244 commit a8e2893

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

RealTimeWeatherMonitoringApp/Infrastructure/Configuration/ConfigurationFactory.cs renamed to RealTimeWeatherMonitoringApp/Infrastructure/Factory/ConfigurationFactory.cs

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
using System.Text.Json;
2-
using RealTimeWeatherMonitoringApp.Infrastructure.Interfaces;
2+
using RealTimeWeatherMonitoringApp.Infrastructure.Configuration;
3+
using RealTimeWeatherMonitoringApp.Infrastructure.Interfaces.Factory;
34

4-
namespace RealTimeWeatherMonitoringApp.Infrastructure.Configuration;
5+
namespace RealTimeWeatherMonitoringApp.Infrastructure.Factory;
56

67
public class ConfigurationFactory : IConfigurationFactory
78
{

RealTimeWeatherMonitoringApp/Infrastructure/Interfaces/IConfigurationFactory.cs renamed to RealTimeWeatherMonitoringApp/Infrastructure/Interfaces/Factory/IConfigurationFactory.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
using RealTimeWeatherMonitoringApp.Infrastructure.Configuration;
22

3-
namespace RealTimeWeatherMonitoringApp.Infrastructure.Interfaces;
3+
namespace RealTimeWeatherMonitoringApp.Infrastructure.Interfaces.Factory;
44

55
public interface IConfigurationFactory
66
{

0 commit comments

Comments
 (0)