Ejemplo n.º 1
0
 public void WhenIAddANoteTo(string lastName, Table notes)
 {
     lastName += uniqueStamp;
     GetConstituentPanel(lastName);
     foreach (var note in notes.Rows)
     {
         if (note.Keys.Contains("Author"))
         {
             note["Author"] = note["Author"] + uniqueStamp;
         }
         ConstituentPanel.AddNote(note);
     }
 }