13 lines
398 B
C#
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);
|
||
|
}
|