Esempio n. 1
0
 public void PostContent(Person person, string text)
 {
     if (_censor.IsAcceptable(text))
     {
         person.Contents.Add(new Content
         {
             Text = text
         });
     }
 }