示例#1
0
 public void InsertImovel(ImoveisVO vo)
 {
     try
     {
         ImovelDAO dataAcess = new ImovelDAO();
         dataAcess.InsertImovel(vo);
     }
     catch (Exception ex)
     {
         throw new Exception(ex.Message);
     }
 }