PranilDahal / Eagle-Post

Eagle-Post: Social Media Software Project - ACM Cal State LA
11 stars 2 forks source link

HumanUserFactory methods (second half) #18

Closed calstatelaacm closed 5 years ago

calstatelaacm commented 6 years ago

Complete the methods inside HumanUserFactory.java You will be working together with #15 Look at the requirements for #15 . This is a 2 man job. You will do the first 3 methods:

    @Override
    public List<HumanUser> getAllFromDatabase() {
        // TODO Auto-generated method stub
        return null;
    }

    @Override
    public HumanUser getById(String id) {
        // TODO Auto-generated method stub
        return null;
    }

    @Override
    public String insertToDatabase(HumanUserPostData postData) {
        // TODO Auto-generated method stub
        return null;
    }
PranilDahal commented 5 years ago

Implemented by daniel