Fix log TAB3

Fix PROG gestione TaskMan
This commit is contained in:
Samuele Locatelli
2024-10-28 11:10:36 +01:00
parent 1b6d28f2eb
commit f44c32d501
39 changed files with 493 additions and 150 deletions
@@ -73,24 +73,6 @@ namespace MP.TaskMan.Controllers
return dtNext;
}
/// <summary>
/// Elenco da tabella Config
/// </summary>
/// <returns></returns>
public List<ConfigModel> ConfigGetAll()
{
List<ConfigModel> dbResult = new List<ConfigModel>();
using (var dbCtx = new TaskContext(_configuration))
{
dbResult = dbCtx
.DbSetConfig
.AsNoTracking()
.OrderBy(x => x.Chiave)
.ToList();
}
return dbResult;
}
public void Dispose()
{
_configuration = null;