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