public void Update(Contact entity)
 {
     _contactRepository.Update(entity);
 }
 public void Insert(Contact entity)
 {
     _contactRepository.Insert(entity);
 }