using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; using presence.domain.Models; namespace domain.UseCase { public interface IUserUseCase { List GetAllUsers(); bool RemoveUserById(int userId); User GetUserById(int userId); bool UpdateUserById(int userId, String fio, int groupId); } }