17 lines
390 B
C#
17 lines
390 B
C#
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);
|
|
|
|
}
|
|
} |