Skip to content

Commit 5eb1215

Browse files
authored
Merge pull request #5 from PandaTechAM/development
namespace fix
2 parents 23eede2 + ad65aa0 commit 5eb1215

File tree

13 files changed

+23
-22
lines changed

13 files changed

+23
-22
lines changed

src/ServiceResponse/Controller/ExtendedController.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
using Microsoft.AspNetCore.Mvc;
22
using Microsoft.Extensions.Logging;
3-
using ServiceResponse.Dtos;
4-
using ServiceResponse.ExceptionHandler;
5-
using ServiceResponse.JsonException;
3+
using ServiceResponseCrafter.Dtos;
4+
using ServiceResponseCrafter.ExceptionHandler;
5+
using ServiceResponseCrafter.JsonException;
66

7-
namespace ServiceResponse.Controller;
7+
namespace ServiceResponseCrafter.Controller;
88

99
[PandaJsonException]
1010
public abstract class ExtendedController : ControllerBase

src/ServiceResponse/Dtos/ServiceResponse.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
namespace ServiceResponse.Dtos;
1+
namespace ServiceResponseCrafter.Dtos;
22

33
public class ServiceResponse
44
{

src/ServiceResponse/Dtos/ServiceResponsePaged.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
namespace ServiceResponse.Dtos;
1+
namespace ServiceResponseCrafter.Dtos;
22

33
public class ServiceResponsePaged<T> : ServiceResponse
44
{

src/ServiceResponse/Dtos/ServiceResponseStatus.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
using System.Text.Json.Serialization;
22

3-
namespace ServiceResponse.Dtos;
3+
namespace ServiceResponseCrafter.Dtos;
44

55
[JsonConverter(typeof(JsonStringEnumConverter))]
66
public enum ServiceResponseStatus

src/ServiceResponse/ExceptionHandler/DebugExceptionHandler.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
using System.Text;
2-
using ServiceResponse.Dtos;
2+
using ServiceResponseCrafter.Dtos;
33

4-
namespace ServiceResponse.ExceptionHandler;
4+
namespace ServiceResponseCrafter.ExceptionHandler;
55

66
public class DebugExceptionHandler : IExceptionHandler
77
{

src/ServiceResponse/ExceptionHandler/IExceptionHandler.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
namespace ServiceResponse.ExceptionHandler;
1+
namespace ServiceResponseCrafter.ExceptionHandler;
22

33
public interface IExceptionHandler
44
{

src/ServiceResponse/ExceptionHandler/PublicExceptionHandler.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
using ServiceResponse.Dtos;
1+
using ServiceResponseCrafter.Dtos;
22

3-
namespace ServiceResponse.ExceptionHandler;
3+
namespace ServiceResponseCrafter.ExceptionHandler;
44

55
public class PublicExceptionHandler : IExceptionHandler
66
{

src/ServiceResponse/ExceptionHandler/ServiceException.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
using ServiceResponse.Dtos;
1+
using ServiceResponseCrafter.Dtos;
22

3-
namespace ServiceResponse.ExceptionHandler;
3+
namespace ServiceResponseCrafter.ExceptionHandler;
44

55
public class ServiceException : Exception
66
{

src/ServiceResponse/Filters/ExceptionFilter.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22
using Microsoft.AspNetCore.Mvc.Filters;
33
using Microsoft.Extensions.DependencyInjection;
44
using Microsoft.Extensions.Logging;
5-
using ServiceResponse.Controller;
6-
using ServiceResponse.ExceptionHandler;
5+
using ServiceResponseCrafter.Controller;
6+
using ServiceResponseCrafter.ExceptionHandler;
77

8-
namespace ServiceResponse.Filters;
8+
namespace ServiceResponseCrafter.Filters;
99

1010
public class ServiceExceptionFilterAttribute : ExceptionFilterAttribute
1111
{

src/ServiceResponse/Filters/ValidationFilter.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
using System.Text;
22
using Microsoft.AspNetCore.Mvc;
33
using Microsoft.AspNetCore.Mvc.Filters;
4-
using ServiceResponse.Dtos;
4+
using ServiceResponseCrafter.Dtos;
55

6-
namespace ServiceResponse.Filters;
6+
namespace ServiceResponseCrafter.Filters;
77

88
public class ServiceValidationFilterAttribute : ActionFilterAttribute
99
{

0 commit comments

Comments
 (0)