presence_new/domain/UseCase/IUserUseCase.cs

17 lines
390 B
C#
Raw Normal View History

2024-12-13 07:21:14 +00:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using presence.domain.Models;
namespace domain.UseCase
{
public interface IUserUseCase
{
List<User> GetAllUsers();
bool RemoveUserById(int userId);
User GetUserById(int userId);
bool UpdateUserById(int userId, String fio, int groupId);
}
}