presence/presence_client/ApiClients/Interfaces/IPresenceApiClient.cs
2025-04-30 04:13:44 +03:00

13 lines
398 B
C#

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);
}