public async Task RemoveTelephoneNote(TelephoneNote telephoneNote)
 {
     await _telephoneManager.RemoveTelephoneNote(telephoneNote);
 }
 public async Task UpdateTelephoneNote(TelephoneNote telephoneNote)
 {
     await RemoveTelephoneNote(telephoneNote);
     await AddTelephoneNote(telephoneNote);
 }
 public async Task AddTelephoneNote(TelephoneNote telephoneNote)
 {
     await _telephoneManager.AddTelephoneNote(telephoneNote);
 }