Exemplo n.º 1
0
        public void NotificarSobreInmueble(Interesado interesado, decimal cotizacion)
        {
            if (!interesado.Disponible)
            {
                return;
            }

            if (cotizacion == 0)
            {
                cotizacion = GetDolar();
            }

            try
            {
                List <Inmueble> inmuebles = InmuebleDAO.GetInmueblesParaInteresado(interesado, cotizacion);
                if (inmuebles.Count > 0)
                {
                    EmailHelper.SendInmueblesInEmail(inmuebles, interesado);
                }
            }
            catch (Exception ex)
            {
                EmailHelper.EnviarNotificacion(ex);
            }
        }
Exemplo n.º 2
0
 public Inmueble[] GetInmueblesParaInteresado(Interesado interesado, decimal cotizacion)
 {
     try
     {
         return(InmuebleDAO.GetInmueblesParaInteresado(interesado, cotizacion).ToArray());
     }
     catch (Exception)
     {
         throw;
     }
 }