/// <summary>
 /// Constructor
 /// </summary>
 /// <param name="context">In this case ViewInbox</param>
 /// <param name="msgs">The list of messages between this user and another user</param>
 public MsgListAdapter(ViewInbox context, IList <Message> msgs) : base()
 {
     this.context = context;
     this.msgs    = msgs;
 }
Example #2
0
 /// <summary>
 /// Constructor
 /// </summary>
 /// <param name="context">In this case ViewInbox</param>
 /// <param name="msgs">The list of users that this user has had a conversation with</param>
 public MsgListAdapterInbox(ViewInbox context, IList <string> users) : base()
 {
     this.context = context;
     this.users   = users;
 }