public Contact GetByContactID(int id)
 {
     return(_contactDal.GetByID(x => x.ContactId == id));
 }