public async Task DeleteContactAsync(int id)
 {
     await _contactDal.DeleteAsync(new Contact { Id = id });
 }