closes #13: unify factories folder location

pull/26/head
Simon Gockner 6 years ago
parent 432f619771
commit a930db5f50
  1. 1
      GBase.Client/GBaseClient.cs
  2. 1
      GBase.Client/Installers/GBaseClientInstaller.cs
  3. 2
      GBase.Client/Services/Factories/IGBaseEntryServiceFactory.cs
  4. 2
      GBase.Client/Services/Factories/IGBaseServiceFactory.cs
  5. 2
      GBase.Client/Services/Factories/IGBaseTableServiceFactory.cs
  6. 3
      GBase/DataHandling/Cache/Factories/IXmlDataHandlerCacheEntryFactory.cs
  7. 5
      GBase/DataHandling/Cache/Factories/IXmlDataHandlerCacheFactory.cs
  8. 4
      GBase/DataHandling/Cache/Factories/IXmlDataHandlerCachePropertyEntryFactory.cs
  9. 2
      GBase/DataHandling/Cache/XmlDataHandlerCache.cs
  10. 2
      GBase/DataHandling/Cache/XmlDataHandlerCacheEntry.cs
  11. 4
      GBase/DataHandling/Factories/IXmlDataHandlerFactory.cs
  12. 4
      GBase/DataHandling/Factories/IXmlDataReaderFactory.cs
  13. 4
      GBase/DataHandling/Factories/IXmlDataWriterFactory.cs
  14. 4
      GBase/DataHandling/XmlDataHandler.cs
  15. 4
      GBase/FileHandling/Factories/IFileHandlerFactory.cs
  16. 4
      GBase/Installers/DataHandlingInstaller.cs
  17. 2
      GBase/Installers/FileHandlingInstaller.cs
  18. 1
      Test.GBase.Client/IntegrationTest.cs
  19. 4
      Test.GBase/DataHandling/XmlDataHandlerTest.cs

@ -6,6 +6,7 @@ using System.Threading.Tasks;
using GBase.Api.Services;
using GBase.Client.Factories;
using GBase.Client.Interfaces;
using GBase.Client.Services.Factories;
namespace GBase.Client
{

@ -7,6 +7,7 @@ using GBase.Api.Services;
using GBase.Client.Factories;
using GBase.Client.Interfaces;
using GBase.Client.Services;
using GBase.Client.Services.Factories;
using LightweightIocContainer.Interfaces;
using LightweightIocContainer.Interfaces.Installers;

@ -6,7 +6,7 @@
using GBase.Api.Communication;
using GBase.Api.Services;
namespace GBase.Client.Factories
namespace GBase.Client.Services.Factories
{
/// <summary>
/// Factory for the <see cref="IGBaseEntryService"/>

@ -6,7 +6,7 @@
using GBase.Api.Communication;
using GBase.Api.Services;
namespace GBase.Client.Factories
namespace GBase.Client.Services.Factories
{
/// <summary>
/// Factory for the <see cref="IGBaseService"/>

@ -6,7 +6,7 @@
using GBase.Api.Communication;
using GBase.Api.Services;
namespace GBase.Client.Factories
namespace GBase.Client.Services.Factories
{
/// <summary>
/// Factory for the <see cref="IGBaseTableService"/>

@ -3,8 +3,9 @@
// Copyright(c) 2020 SimonG. All Rights Reserved.
using System;
using GBase.Interfaces.DataHandling.Xml.Cache;
namespace GBase.Interfaces.DataHandling.Xml.Cache.Factories
namespace GBase.DataHandling.Cache.Factories
{
/// <summary>
/// Factory for the <see cref="IXmlDataHandlerCacheEntry"/>

@ -2,7 +2,10 @@
// Created: 2020-02-12
// Copyright(c) 2020 SimonG. All Rights Reserved.
namespace GBase.Interfaces.DataHandling.Xml.Cache.Factories
using GBase.Interfaces.DataHandling.Xml;
using GBase.Interfaces.DataHandling.Xml.Cache;
namespace GBase.DataHandling.Cache.Factories
{
/// <summary>
/// Factory for the <see cref="IXmlDataHandlerCache"/>

@ -2,7 +2,9 @@
// Created: 2020-02-12
// Copyright(c) 2020 SimonG. All Rights Reserved.
namespace GBase.Interfaces.DataHandling.Xml.Cache.Factories
using GBase.Interfaces.DataHandling.Xml.Cache;
namespace GBase.DataHandling.Cache.Factories
{
/// <summary>
/// Factory for the <see cref="IXmlDataHandlerCachePropertyEntry"/>

@ -6,10 +6,10 @@ using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using GBase.DataHandling.Cache.Factories;
using GBase.Interfaces.DataHandling.Cache;
using GBase.Interfaces.DataHandling.Xml;
using GBase.Interfaces.DataHandling.Xml.Cache;
using GBase.Interfaces.DataHandling.Xml.Cache.Factories;
namespace GBase.DataHandling.Cache
{

@ -4,9 +4,9 @@
using System;
using System.Collections.Generic;
using GBase.DataHandling.Cache.Factories;
using GBase.Interfaces.DataHandling.Cache;
using GBase.Interfaces.DataHandling.Xml.Cache;
using GBase.Interfaces.DataHandling.Xml.Cache.Factories;
namespace GBase.DataHandling.Cache
{

@ -2,7 +2,9 @@
// Created: 2020-02-12
// Copyright(c) 2020 SimonG. All Rights Reserved.
namespace GBase.Interfaces.DataHandling.Xml.Factories
using GBase.Interfaces.DataHandling.Xml;
namespace GBase.DataHandling.Factories
{
/// <summary>
/// Factory for the <see cref="IXmlDataHandler"/>

@ -2,7 +2,9 @@
// Created: 2020-02-12
// Copyright(c) 2020 SimonG. All Rights Reserved.
namespace GBase.Interfaces.DataHandling.Xml.Factories
using GBase.Interfaces.DataHandling.Xml;
namespace GBase.DataHandling.Factories
{
/// <summary>
/// Factory for the <see cref="IXmlDataReader"/>

@ -2,7 +2,9 @@
// Created: 2020-02-12
// Copyright(c) 2020 SimonG. All Rights Reserved.
namespace GBase.Interfaces.DataHandling.Xml.Factories
using GBase.Interfaces.DataHandling.Xml;
namespace GBase.DataHandling.Factories
{
/// <summary>
/// Factory for the <see cref="IXmlDataWriter"/>

@ -7,11 +7,11 @@ using System.Collections.Generic;
using System.Linq;
using System.Threading;
using System.Threading.Tasks;
using GBase.DataHandling.Cache.Factories;
using GBase.DataHandling.Factories;
using GBase.Interfaces.DataHandling;
using GBase.Interfaces.DataHandling.Xml;
using GBase.Interfaces.DataHandling.Xml.Cache;
using GBase.Interfaces.DataHandling.Xml.Cache.Factories;
using GBase.Interfaces.DataHandling.Xml.Factories;
namespace GBase.DataHandling
{

@ -3,7 +3,9 @@
// Copyright(c) 2020 SimonG. All Rights Reserved.
namespace GBase.Interfaces.FileHandling.Factories
using GBase.Interfaces.FileHandling;
namespace GBase.FileHandling.Factories
{
/// <summary>
/// Factory for the <see cref="IFileHandler"/>

@ -5,10 +5,10 @@
using GBase.DataHandling;
using GBase.DataHandling.Cache;
using GBase.DataHandling.Cache.Factories;
using GBase.DataHandling.Factories;
using GBase.Interfaces.DataHandling.Xml;
using GBase.Interfaces.DataHandling.Xml.Cache;
using GBase.Interfaces.DataHandling.Xml.Cache.Factories;
using GBase.Interfaces.DataHandling.Xml.Factories;
using LightweightIocContainer.Interfaces;
using LightweightIocContainer.Interfaces.Installers;

@ -4,8 +4,8 @@
using GBase.FileHandling;
using GBase.FileHandling.Factories;
using GBase.Interfaces.FileHandling;
using GBase.Interfaces.FileHandling.Factories;
using LightweightIocContainer.Interfaces;
using LightweightIocContainer.Interfaces.Installers;

@ -3,6 +3,7 @@ using GBase.Api.Communication;
using GBase.Client;
using GBase.Client.Factories;
using GBase.Client.Interfaces;
using GBase.Client.Services.Factories;
using Moq;
using NUnit.Framework;

@ -6,10 +6,10 @@ using System.Collections.Generic;
using System.Threading;
using System.Threading.Tasks;
using GBase.DataHandling;
using GBase.DataHandling.Cache.Factories;
using GBase.DataHandling.Factories;
using GBase.Interfaces.DataHandling.Xml;
using GBase.Interfaces.DataHandling.Xml.Cache;
using GBase.Interfaces.DataHandling.Xml.Cache.Factories;
using GBase.Interfaces.DataHandling.Xml.Factories;
using Moq;
using NUnit.Framework;

Loading…
Cancel
Save