public List <DisplayReply> Replies() { var replylist = _replyManager.GetAllReply(whoami()); var reply = new List <DisplayReply>(); AccountManager accManager = new AccountManager(); AttachmentManager attManager = new AttachmentManager(); foreach (var r in replylist) { reply.Add(new DisplayReply(r, accManager, attManager)); } return(reply); }