6

public class TodaysRant extends YesterdaysRant implements Rant {

public string getRantContent() {
StringBuilder sb = new StringBuilder();

sb.Append(super.getRantContent());

sb.Append("Going on my rant from yesterday, should you be required to provide your own laptop/desktop/equipment, or should it be the responsibility of the company?");

return sb.ToString();
}

}

Comments
  • 2
    If you're an employee you'd have to get one from the company, I would say.
Add Comment