13 lines
305 B
C#
13 lines
305 B
C#
using data.RemoteData.RemoteDataBase.DAO;
|
|
|
|
namespace domain.UseCase
|
|
{
|
|
public interface IUserUseCase
|
|
{
|
|
List<UserDao> GetAllUsers();
|
|
bool RemoveUserById(int userId);
|
|
UserDao UpdateUser(int userId, string newFIO, int groupId);
|
|
List<UserDao> GetUserNames();
|
|
}
|
|
}
|