public async Task <Contact> GetContactByIdAsync(int id)
 {
     return(await _contactDal.GetAsync(m => m.Id == id));
 }