Exemple #1
0
        /**
         * @param Transaccion t
         */
        public List<string> GetDetalles(Transaccion t) {
            List<string> detalles = new List<string>();

            detalles.Add("Referencia: " + t.Identificador);
            detalles.Add("Fecha: " + t.Fecha.ToShortDateString());
            detalles.Add("");
            detalles.Add("Tarjeta: " + t.Sesion.Tarjeta.ToStringSecreto());

            // TODO: Funcion incompleta, falta detalles de la transaccion en si
            return detalles;
        }
Exemple #2
0
 /**
  * @param Transaccion t
  */
 public void enviarTransaccion(Transaccion t) {
     // TODO implement here
 }