22 lines
658 B
C#
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
|
|
}
|
|
} |