10 lines
322 B
C#
10 lines
322 B
C#
using line_gestao_api.Models;
|
|
|
|
namespace line_gestao_api.Services;
|
|
|
|
public interface IDataConsistencyService
|
|
{
|
|
Task SyncFromMobileLineAsync(MobileLine line, CancellationToken cancellationToken = default);
|
|
Task SyncFromTrocaNumeroAsync(TrocaNumeroLine trocaNumero, CancellationToken cancellationToken = default);
|
|
}
|