Files
lux/EgwCoreLib.Lux.Data/Services/Config/IConfProfileService.cs
T
2026-03-20 08:27:38 +01:00

22 lines
658 B
C#

using EgwCoreLib.Lux.Data.DbModel.Config;
using EgwMultiEngineManager.Data;
namespace EgwCoreLib.Lux.Data.Services.Config
{
public interface IConfProfileService
{
#region Public Methods
Task<bool> DeleteAsync(ProfileModel model);
Task<List<ProfileModel>> GetAllAsync();
Task<bool> SaveProfileListAsync(string uID, Constants.EXECENVIRONMENTS execEnvironment, string rawContent);
Task<bool> SaveProfileThreshAsync(string uID, Constants.EXECENVIRONMENTS execEnvironment, string rawThreshold, string rawData);
Task<bool> UpsertAsync(ProfileModel upsRec);
#endregion Public Methods
}
}