Example #1
0
 public DataTable GetPersons()
 {
     try
     {
         PersonDAL objdal = new PersonDAL();
         return(objdal.Read());
     }
     catch
     {
         throw;
     }
 }
Example #2
0
        public List <PersonBO> Read()
        {
            IReadable dal = new PersonDAL();

            return(dal.Read());
        }