Pipefy/Services/IPipefyApiService.cs

15 lines
389 B
C#

using Newtonsoft.Json.Linq;
using System.Threading.Tasks;
using System.Collections.Generic;
using Pipefy.Models;
namespace Pipefy.Services
{
public interface IPipefyApiService
{
Task<JArray> GetRecordsAsync(string tableId);
Task<JArray> GetGestoresAsync(string tableId);
Task<bool> CreateRecordsAsync(string tableId, List<ClasseEmpresas> records);
}
}