using data.RemoteData.RemoteDataBase.DAO; namespace data.Repository { public interface IUserRepository { List GetAllUsers(); bool RemoveUserById(int userId); UserDao UpdateUser(int userId, string newFIO, int groupId); List GetUserNames(); } }