From d8b5abeb93e9a398521d2ceaca64cff198870856 Mon Sep 17 00:00:00 2001 From: Hadi Khazaee Asl Date: Sat, 16 May 2026 01:15:03 +0330 Subject: [PATCH] Preparing Controllers ... --- Controllers/XBaseApiV1Controller.cs | 4 ---- Controllers/XBaseController.cs | 2 +- 2 files changed, 1 insertion(+), 5 deletions(-) diff --git a/Controllers/XBaseApiV1Controller.cs b/Controllers/XBaseApiV1Controller.cs index d889d96..1618344 100644 --- a/Controllers/XBaseApiV1Controller.cs +++ b/Controllers/XBaseApiV1Controller.cs @@ -1,12 +1,8 @@ -using System; -using Microsoft.AspNetCore.Authorization; using Microsoft.AspNetCore.Mvc; using Microsoft.Extensions.Logging; using xCommons.Attributes; using xCommons.Configurations; -using xCommons.Extensions; using xCommons.Providers; -using xExceptions.Constants; namespace xCommons.Controllers { /// diff --git a/Controllers/XBaseController.cs b/Controllers/XBaseController.cs index 3d7d8eb..a175064 100644 --- a/Controllers/XBaseController.cs +++ b/Controllers/XBaseController.cs @@ -19,7 +19,7 @@ namespace xCommons.Controllers { public XAppConfiguration AppConfiguration { get; } public XValidationProvider ValidationProvider { get; } - public XBaseController ( + protected XBaseController ( ILogger logger, XAppConfiguration appConfiguration, XValidationProvider validationProvider