예제 #1
0
        // GET: api/Pessoa/5

        public AgenciaModel.Pessoa Get(int id)
        {
            if (id == 0)
            {
                return new AgenciaModel.Pessoa()
                       {
                           Juridica = false
                       }
            }
            ;

            return(Dal.Get(id));
        }
예제 #2
0
 // GET: api/Pessoa/5
 public AgenciaModel.Pessoa Get(int id)
 {
     return(Dal.Get(id));
 }