Exemplo n.º 1
0
        public Person getPersonById(int id)
        {
            PersonListDAL list = new PersonListDAL();

            return(list.getPerson(id));
        }
Exemplo n.º 2
0
        public List <Person> getPersonList()
        {
            PersonListDAL list = new PersonListDAL();

            return(list.getPersonList());
        }