Fixing namespaces

This commit is contained in:
Chris Cameron
2018-01-15 11:19:47 -05:00
parent 2a248a50c2
commit 88484c6861
18 changed files with 24 additions and 28 deletions

View File

@@ -1,9 +1,8 @@
using System;
using System.Collections.Generic;
using ICD.Common.Properties;
using ICD.Common.Utils;
namespace ICD.Common.Services.Logging
namespace ICD.Common.Utils.Services.Logging
{
public enum eSeverity
{

View File

@@ -1,9 +1,8 @@
using System;
using System.Text;
using ICD.Common.Properties;
using ICD.Common.Utils;
namespace ICD.Common.Services.Logging
namespace ICD.Common.Utils.Services.Logging
{
/// <summary>
/// Log Entry Item

View File

@@ -1,6 +1,6 @@
using ICD.Common.Utils.EventArguments;
namespace ICD.Common.Services.Logging
namespace ICD.Common.Utils.Services.Logging
{
public sealed class LogItemEventArgs : GenericEventArgs<LogItem>
{

View File

@@ -1,6 +1,6 @@
using ICD.Common.Utils.EventArguments;
namespace ICD.Common.Services.Logging
namespace ICD.Common.Utils.Services.Logging
{
public sealed class SeverityEventArgs : GenericEventArgs<eSeverity>
{

View File

@@ -1,6 +1,6 @@
using System;
namespace ICD.Common.Services
namespace ICD.Common.Utils.Services
{
public sealed class ServiceNotFoundException : Exception
{

View File

@@ -2,10 +2,9 @@
using System.Collections.Generic;
using System.Linq;
using ICD.Common.Properties;
using ICD.Common.Utils;
using ICD.Common.Utils.Extensions;
namespace ICD.Common.Services
namespace ICD.Common.Utils.Services
{
public sealed class ServiceProvider
{