17 lines
370 B
C#
17 lines
370 B
C#
using EgwCoreLib.Lux.Data.DbModel.Config;
|
|
|
|
namespace EgwCoreLib.Lux.Data.Services.Config
|
|
{
|
|
public interface IConfProfileService
|
|
{
|
|
#region Public Methods
|
|
|
|
Task<bool> DeleteAsync(ProfileModel model);
|
|
|
|
Task<List<ProfileModel>> GetAllAsync();
|
|
|
|
Task<bool> UpsertAsync(ProfileModel upsRec);
|
|
|
|
#endregion Public Methods
|
|
}
|
|
} |