public Pessoa Get(int id)
 {
     try
     {
         using (var pessoaNegocio = new PessoaNegocio())
         {
             return(pessoaNegocio.Get(id));
         }
     }
     catch (Exception)
     {
         throw;
     }
 }
 public IEnumerable <Pessoa> Get()
 {
     try
     {
         using (var pessoaNegocio = new PessoaNegocio())
         {
             return(pessoaNegocio.Get());
         }
     }
     catch (Exception)
     {
         throw;
     }
 }