public List<ViviendaBE> ListarVivienda()
        {
            List<ViviendaBE> lstCuota = new List<ViviendaBE>();
            try
            {
                viviendaDAO = new ViviendaDAO();

                lstCuota = viviendaDAO.Listar(null, null);
            }
            catch (Exception exception)
            {

                throw new FaultException<RetornaMensaje>
                    (new RetornaMensaje
                    {
                        Mensage = string.Format(resMensajes.msjNoListado, "Vivienda"),
                        CodigoError = exception.GetHashCode().ToString(),
                        Exito = true
                    }
                    , new FaultReason(exception.Message));
            }
            return lstCuota;
        }