25 lines
678 B
C#
25 lines
678 B
C#
using MP.Data.DbModels;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace MP.Data.Repository.System
|
|
{
|
|
public interface ISystemRepository
|
|
{
|
|
Task<List<ConfigModel>> ConfigGetAllAsync();
|
|
|
|
Task<bool> ConfigUpdateAsync(ConfigModel updRec);
|
|
|
|
Task<bool> EvListInsertAsync(EventListModel newRec);
|
|
|
|
Task<bool> ForceDbMaintAsync(bool doExec, bool doUpdStat, bool doSave, int minPgCnt, int minAvgFrag, int maxAvgFragReb);
|
|
|
|
Task<List<LinkMenuModel>> ListLinkAllAsync();
|
|
|
|
Task<List<LinkMenuModel>> ListLinkFiltAsync(string tipoLink);
|
|
|
|
Task<List<LinkMenuModel>> ElencoLinkAsync();
|
|
}
|
|
}
|