using MP.Core.Objects; using MP.Data.DbModels.Mtc; using System.Collections.Generic; using System.Threading.Tasks; namespace MP.Data.Services.Mtc { public interface IMtcSetupService { /// /// Replace the data set for the specified machine. /// Deletes existing record then inserts new one. /// Task ReplaceMachineDataAsync(string idxMacchina, List items); /// /// Retrieve all data for a given machine. /// Task GetMachineDataAsync(string idxMacchina); } }