Skip to content
This repository was archived by the owner on Jul 28, 2025. It is now read-only.

Commit e491781

Browse files
fix: Fixed namespace errors
1 parent d33d146 commit e491781

4 files changed

Lines changed: 6 additions & 6 deletions

File tree

src/ServiceLayer.Mesh/FileTypes/NbssAppointmentEvents/FileTransformer.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1+
using ServiceLayer.Data.Models;
12
using ServiceLayer.Mesh.FileTypes.NbssAppointmentEvents.Validation;
2-
using ServiceLayer.Mesh.Models;
33

44
namespace ServiceLayer.Mesh.FileTypes.NbssAppointmentEvents;
55

src/ServiceLayer.Mesh/Functions/FileTransformFunction.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22
using Microsoft.Azure.Functions.Worker;
33
using Microsoft.EntityFrameworkCore;
44
using Microsoft.Extensions.Logging;
5+
using ServiceLayer.Data;
6+
using ServiceLayer.Data.Models;
57
using ServiceLayer.Mesh.Configuration;
6-
using ServiceLayer.Mesh.Data;
78
using ServiceLayer.Mesh.Messaging;
8-
using ServiceLayer.Mesh.Models;
99
using ServiceLayer.Mesh.Storage;
1010

1111
namespace ServiceLayer.Mesh.Functions;

src/ServiceLayer.Mesh/IFileTransformer.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
using ServiceLayer.Mesh.Models;
1+
using ServiceLayer.Data.Models;
22

33
namespace ServiceLayer.Mesh;
44

tests/ServiceLayer.Mesh.Tests/Functions/FileTransformFunctionTests.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@
22
using Microsoft.EntityFrameworkCore;
33
using Microsoft.Extensions.Logging;
44
using Moq;
5+
using ServiceLayer.Data;
6+
using ServiceLayer.Data.Models;
57
using ServiceLayer.Mesh.Configuration;
6-
using ServiceLayer.Mesh.Data;
78
using ServiceLayer.Mesh.Functions;
89
using ServiceLayer.Mesh.Messaging;
9-
using ServiceLayer.Mesh.Models;
1010
using ServiceLayer.Mesh.Storage;
1111

1212
namespace ServiceLayer.Mesh.Tests.Functions;

0 commit comments

Comments
 (0)