Beispiel #1
0
    protected void BtnSolicitar_Click(object sender, EventArgs e)
    {
        try
        {
            //obtengo el cliente logueado
            ServicioWCF.Cliente _unCliente = (ServicioWCF.Cliente)Session["Usuario"];

            //creo objeto prestamo
            ServicioWCF.Prestamo _unPrestamo = new ServicioWCF.Prestamo();
            _unPrestamo.UnCliente = _unCliente;
            _unPrestamo.Fecha     = DateTime.Now;
            _unPrestamo.Monto     = Convert.ToDouble(TxtMonto.Text);
            _unPrestamo.Aprobado  = false;


            //lo solicito
            new ServicioWCF.ServicioWCFClient().AltaPrestamo(_unPrestamo);
            //si llego aca - no hubo errores
            LblError.Text = "Prestamos Solicitado Correctamente";
            TxtMonto.Text = "";
        }
        catch (Exception ex)
        {
            LblError.Text = ex.Message;
        }
    }
Beispiel #2
0
 protected void BtnConsultar_Click(object sender, EventArgs e)
 {
     try
     {
         //obtengo el cliente logueado
         ServicioWCF.Cliente _unCliente = (ServicioWCF.Cliente)Session["Usuario"];
         //realizo listado
         GVPrestamos.DataSource = new ServicioWCF.ServicioWCFClient().ListoPrestamosCliente(_unCliente);
         GVPrestamos.DataBind();
     }
     catch (Exception ex)
     {
         LblError.Text = ex.Message;
     }
 }