public List <OwnerDTO> GetOwnerList() { try { OwnerDAO oDao = new OwnerDAO(); return(oDao.GetAll()); } catch (Exception ex) { throw ex; } }
public OwnerBLL() { dao = new OwnerDAO(); }