Change NucuCar.TestClient folder structure

This commit is contained in:
Denis-Cosmin Nutiu 2019-11-23 16:13:27 +02:00
parent 5a22b2f851
commit ad5c5da77f
4 changed files with 6 additions and 2 deletions

View file

@ -1,4 +1,6 @@
using CommandLine; using CommandLine;
using NucuCar.TestClient.Sensors;
using NucuCar.TestClient.Telemetry;
namespace NucuCar.TestClient namespace NucuCar.TestClient
{ {

View file

@ -1,4 +1,5 @@
// ReSharper disable UnusedAutoPropertyAccessor.Global // ReSharper disable UnusedAutoPropertyAccessor.Global
using System.Collections.Generic; using System.Collections.Generic;
using System.Threading; using System.Threading;
using System.Threading.Tasks; using System.Threading.Tasks;
@ -7,7 +8,7 @@ using Microsoft.Extensions.Logging;
using Newtonsoft.Json; using Newtonsoft.Json;
using NucuCar.Domain.Telemetry; using NucuCar.Domain.Telemetry;
namespace NucuCar.TestClient namespace NucuCar.TestClient.Telemetry
{ {
public class AzureTelemetryPublishCmd public class AzureTelemetryPublishCmd
{ {

View file

@ -1,4 +1,5 @@
// ReSharper disable UnusedAutoPropertyAccessor.Global // ReSharper disable UnusedAutoPropertyAccessor.Global
using System; using System;
using System.Collections.Generic; using System.Collections.Generic;
using System.Text; using System.Text;
@ -9,7 +10,7 @@ using Microsoft.Azure.EventHubs;
using Microsoft.Extensions.Logging; using Microsoft.Extensions.Logging;
using ILogger = Microsoft.Extensions.Logging.ILogger; using ILogger = Microsoft.Extensions.Logging.ILogger;
namespace NucuCar.TestClient namespace NucuCar.TestClient.Telemetry
{ {
public class AzureTelemetryReaderCmd public class AzureTelemetryReaderCmd
{ {