// DELETE: api/Contact/5
 public async Task <bool> Delete(int id)
 {
     return(await _contactManger.DeleteContacts(id));
 }