2024-10-23 07:06:56 +00:00
|
|
|
using System;
|
|
|
|
using System.Collections.Generic;
|
|
|
|
using System.Linq;
|
|
|
|
using System.Text;
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
using Posechaemost.Data.LocalData.Entity;
|
2024-11-06 04:10:09 +00:00
|
|
|
using Posechaemost.Data.RemoteData.RemoteDataBase.DAO;
|
2024-10-23 07:06:56 +00:00
|
|
|
|
|
|
|
namespace Posechaemost.Data.Repository {
|
|
|
|
public interface IUserRepository
|
|
|
|
{
|
2024-11-06 04:10:09 +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-10-23 07:06:56 +00:00
|
|
|
}
|
|
|
|
}
|