2024-11-17 16:24:01 +00:00
|
|
|
|
using Demo.Data.RemoteData.RemoteDataBase.DAO;
|
|
|
|
|
using Demo.domain.Models;
|
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
|
|
|
|
namespace Demo.Data.Repository
|
|
|
|
|
{
|
|
|
|
|
public interface IUserRepository
|
|
|
|
|
{
|
2024-12-19 17:36:57 +00:00
|
|
|
|
List<UserDao> GetAllUser();
|
|
|
|
|
bool RemoveUserById(int usesId);
|
|
|
|
|
UserDao GetUserById(int userId);
|
|
|
|
|
bool UpdateUser(UserDao userUpdate);
|
|
|
|
|
bool UpdateUserById(int userId, string fio, int groupId);
|
2024-11-17 16:24:01 +00:00
|
|
|
|
}
|
|
|
|
|
}
|