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