Beispiel #1
0
 public IEnumerable <Message> AllMessagesInChatroomSinceDate(int id, DateTime date)
 {
     try
     {
         return(service.GetAllMessagesInChatroomSinceDate(id, date));
     }
     catch (ArgumentNullException)
     {
         throw new HttpResponseException(HttpStatusCode.NotFound);
     }
 }