presence/presence_client/ApiClients/Interfaces/IPresenceApiClient.cs

13 lines
398 B
C#
Raw Normal View History

2025-04-30 01:13:44 +00:00
using System;
using System.Collections.Generic;
using System.Threading.Tasks;
using Demo.Domain.Models;
using presence_client.DTO;
namespace presence_client.ApiClients.Interfaces;
public interface IPresenceApiClient
{
Task<PresenceResponse?> GetPresenceAsync(int groupId, string startDate, string endDate);
Task<bool> DeletePresenceRecords(string date, int lessonNumder, Guid userGuid);
}