コード例 #1
0
 public async Task RemoveTelephoneNote(TelephoneNote telephoneNote)
 {
     await _telephoneManager.RemoveTelephoneNote(telephoneNote);
 }
コード例 #2
0
 public async Task UpdateTelephoneNote(TelephoneNote telephoneNote)
 {
     await RemoveTelephoneNote(telephoneNote);
     await AddTelephoneNote(telephoneNote);
 }
コード例 #3
0
 public async Task AddTelephoneNote(TelephoneNote telephoneNote)
 {
     await _telephoneManager.AddTelephoneNote(telephoneNote);
 }