Exemplo n.º 1
0
 public void Delete(Post post)
 {
     if (post.Id == 0)
     {
         throw new TwitterMessageIdentifierUndefinedException();
     }
     _service.DeleteTweet(post.Id);
 }