コード例 #1
0
 public void DeleteNotes(IEnumerable <NoteDTO> notes)
 {
     foreach (var note in notes)
     {
         _client.DeleteNote(note.Guid);
     }
 }
コード例 #2
0
 public void DeleteNoteFailureTest()
 {
     Assert.IsFalse(_client.DeleteNote(Guid.Empty));
 }
コード例 #3
0
 public bool DeleteNote(Guid guid)
 {
     return(_client.DeleteNote(guid));
 }