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