Esempio n. 1
0
        public RealizarPago(BuscarCuentasPorCobrarOutput cxc)
        {
            InitializeComponent();

            BindingContext        = Cliente = cxc;
            AuthenticationService = DependencyService.Get <IAuthenticationService>();
        }
Esempio n. 2
0
        public DetalleCuentaPorCobrar(BuscarCuentasPorCobrarOutput cxc)
        {
            InitializeComponent();

            BindingContext = cxc;
            CxcItem        = cxc;

            ConceptoTipoRecordatorioIdButton.Text = "Recordatorio pago: " + string.Join(",", (from n in CxcItem.RecordatorioCliente select n.ConceptoTipoRecordatorioId));
        }