Example #1
0
 /// <summary>
 /// returns a list of Messages that have the senderId
 /// </summary>
 /// <param name="id"></param>
 /// <returns></returns>
 public async Task <IEnumerable <Message> > GetMessagesBySenderById(string id)
 {
     return(await _repo.GetMessagesBySenderById(id));
 }