presence/presence_client/ApiClients/Interfaces/IUserApiClient.cs

15 lines
438 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 IUserApiClient
{
Task<bool> DeleteUserAsync(Guid userGuid);
Task<bool> UpdateUserFioAsync(Guid userGuid, string fio);
Task<bool> DeleteUsersByGroupIdAsync(int groupId);
Task<bool> CreateUser(string fio, string groupName);
}