Fix interface IIDataLayerServices x metodi non riportati + Fix save TemplateRow

This commit is contained in:
Samuele Locatelli
2026-03-24 13:03:51 +01:00
parent 53e69c0b78
commit 7ef594326d
2 changed files with 34 additions and 5 deletions
+4 -3
View File
@@ -1,5 +1,4 @@
using EgwCoreLib.Lux.Core.RestPayload;
using EgwCoreLib.Lux.Data.Services;
using EgwCoreLib.Lux.Data.Services.General;
using EgwMultiEngineManager.Data;
using Newtonsoft.Json;
@@ -20,7 +19,9 @@ namespace Lux.API.Services
/// </summary>
/// <param name="imgService"></param>
/// <param name="dlService"></param>
public ExternalMessageProcessor(IImageCacheService imgService, DataLayerServices dlService, ICalcRuidService crService, IProdService prodService)
/// <param name="crService"></param>
/// <param name="prodService"></param>
public ExternalMessageProcessor(IImageCacheService imgService, IDataLayerServices dlService, ICalcRuidService crService, IProdService prodService)
{
cacheService = imgService;
dbService = dlService;
@@ -303,7 +304,7 @@ namespace Lux.API.Services
private readonly ICalcRuidService _calcRuidService;
private readonly IProdService _prodService;
private readonly IImageCacheService cacheService;
private readonly DataLayerServices dbService;
private readonly IDataLayerServices dbService;
private string redisBaseKey = "Lux:Cache";
#endregion Private Fields