using Centron.Api.docuFORM.Models; using Centron.Api.docuFORM.Models.Swagger; using Centron.Api.docuFORM.Models.Swagger.Responses; using Centron.Interfaces.BL; using System; using System.Collections.Generic; using System.Text; namespace Centron.Api.docuFORM { public interface IDocuFormApiClient { public Task RequestAuthorization(AuthCodeRequest authCodeRequest); public Task RequestToken(AuthTokenRequest tokenRequest); public Task> GetAllDevices(string token); public Task> GetDeviceCounters(string token, int deviceId, DateTime? requestedDate); } }