15 lines
438 B
C#
15 lines
438 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 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);
|
||
|
}
|