Package billing.CreateTransactionResponse

Examples of billing.CreateTransactionResponse.Status


    public BillingService(BillingDatabase database) {
        this.database = database;
    }

    public CreateTransactionResponse sendTransactionToBilling(Transaction transaction) {
        Status status = database.createTransaction(transaction);
        return new CreateTransactionResponse(status, "OK");
    }
View Full Code Here

TOP

Related Classes of billing.CreateTransactionResponse.Status

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.