Continuo fix commenti
This commit is contained in:
@@ -17,10 +17,7 @@
|
||||
|
||||
#region Public Methods
|
||||
|
||||
/// <summary>
|
||||
/// Elenco completo CostDriver da DB
|
||||
/// </summary>
|
||||
/// <returns></returns>
|
||||
/// <inheritdoc />
|
||||
public async Task<List<CostDriverModel>> GetAllAsync()
|
||||
{
|
||||
return await TraceAsync($"{_className}.GetAll", async (activity) =>
|
||||
|
||||
@@ -2,6 +2,10 @@
|
||||
{
|
||||
public interface ICostDriverService
|
||||
{
|
||||
/// <summary>
|
||||
/// Elenco completo CostDriver da DB
|
||||
/// </summary>
|
||||
/// <returns></returns>
|
||||
Task<List<CostDriverModel>> GetAllAsync();
|
||||
}
|
||||
}
|
||||
|
||||
@@ -4,10 +4,24 @@
|
||||
{
|
||||
#region Public Methods
|
||||
|
||||
/// <summary>
|
||||
/// Eliminazione record
|
||||
/// </summary>
|
||||
/// <param name="rec2del"></param>
|
||||
/// <returns></returns>
|
||||
Task<bool> DeleteAsync(ResourceModel entity);
|
||||
|
||||
/// <summary>
|
||||
/// Elenco completo Resource da DB
|
||||
/// </summary>
|
||||
/// <returns></returns>
|
||||
Task<List<ResourceModel>> GetAllAsync();
|
||||
|
||||
/// <summary>
|
||||
/// Upsert record Resource (aggiorna o inserisce)
|
||||
/// </summary>
|
||||
/// <param name="upsRec"></param>
|
||||
/// <returns></returns>
|
||||
Task<bool> UpsertAsync(ResourceModel upsRec);
|
||||
|
||||
#endregion Public Methods
|
||||
|
||||
@@ -17,6 +17,7 @@
|
||||
|
||||
#region Public Methods
|
||||
|
||||
/// <inheritdoc />
|
||||
public async Task<bool> DeleteAsync(ResourceModel rec2del)
|
||||
{
|
||||
return await TraceAsync($"{_className}.Delete", async (activity) =>
|
||||
@@ -35,6 +36,7 @@
|
||||
});
|
||||
}
|
||||
|
||||
/// <inheritdoc />
|
||||
public async Task<List<ResourceModel>> GetAllAsync()
|
||||
{
|
||||
return await TraceAsync($"{_className}.GetAll", async (activity) =>
|
||||
@@ -48,6 +50,7 @@
|
||||
}
|
||||
|
||||
|
||||
/// <inheritdoc />
|
||||
public async Task<bool> UpsertAsync(ResourceModel upsRec)
|
||||
{
|
||||
return await TraceAsync($"{_className}.Upsert", async (activity) =>
|
||||
|
||||
@@ -2,8 +2,17 @@
|
||||
{
|
||||
public interface IItemGroupService
|
||||
{
|
||||
/// <summary>
|
||||
/// Aggiunge gruppi item mancanti dalla BOM
|
||||
/// </summary>
|
||||
/// <param name="bomList">Lista BOM da verificare e integrare</param>
|
||||
/// <returns></returns>
|
||||
Task<bool> AddMissingAsync(List<BomItemDTO> bomList);
|
||||
|
||||
/// <summary>
|
||||
/// Elenco completo ItemGroup da DB
|
||||
/// </summary>
|
||||
/// <returns></returns>
|
||||
Task<List<ItemGroupModel>> GetAllAsync();
|
||||
|
||||
}
|
||||
|
||||
@@ -17,6 +17,7 @@
|
||||
|
||||
#region Public Methods
|
||||
|
||||
/// <inheritdoc />
|
||||
public async Task<bool> AddMissingAsync(List<BomItemDTO> bomList)
|
||||
{
|
||||
return await TraceAsync($"{_className}.AddMissing", async (activity) =>
|
||||
@@ -35,6 +36,7 @@
|
||||
});
|
||||
}
|
||||
|
||||
/// <inheritdoc />
|
||||
public async Task<List<ItemGroupModel>> GetAllAsync()
|
||||
{
|
||||
return await TraceAsync($"{_className}.GetAll", async (activity) =>
|
||||
|
||||
Reference in New Issue
Block a user