presence_api/data/Repository/IUserRepository.cs

13 lines
309 B
C#
Raw Normal View History

2024-11-11 11:35:05 +00:00
using data.RemoteData.RemoteDataBase.DAO;
namespace data.Repository
{
public interface IUserRepository
{
List<UserDao> GetAllUsers();
bool RemoveUserById(int userId);
UserDao UpdateUser(int userId, string newFIO, int groupId);
List<UserDao> GetUserNames();
}
}