/**
   * Gets the cellphone sent SMS list.
   *
   * @return the cellphone sent SMS list
   */
  public List<SMSDTO> getCellPhoneMadeSMS() {
    final List<SMSDTO> smsDtoList = new ArrayList<SMSDTO>();

    for (SMS sms : this.getMadeSMS()) {
      smsDtoList.add(new SMSDTO(sms.getCallerID(), sms.getReceiverID(), sms.getMessage()));
    }
    return smsDtoList;
  }