Beispiel #1
0
 public void ContactCreationService_Contact_DeleteAsync()
 {
     _contactCreationService.DeleteAsync(0);
     _contactRepositoryMock.Verify(r => r.DeleteAsync(0), Times.Once);
 }
Beispiel #2
0
 public async Task DeleteContactByxIdAsync(int id)
 {
     await _contactCreationService.DeleteAsync(id);
 }