Package com.uip.tatar.model.history

Examples of com.uip.tatar.model.history.Paginate


    @Test
    public void getAppointmentHistories() {
        try {
            authenticatedIfNeed();
            AppointmentHistories appointmentHistories = APITatar.getAppointmentHistories(getTestUser().getId(), new Paginate());
            Assert.assertNotNull("appointmentHistories is null", appointmentHistories);
        catch (APITatarException ex) {
            Assert.fail(ex.getMessage());
        }
    }
View Full Code Here


    @Test
    public void getPaymentHistories() {
        try {
            authenticatedIfNeed();
            PaymentHistories appointmentHistories = APITatar.getPaymentHistories(getTestUser().getId(), new Paginate());
            Assert.assertNotNull("paymentHistories is null", appointmentHistories);
        catch (APITatarException ex) {
            Assert.fail(ex.getMessage());
        }
    }
View Full Code Here

            //get fines
            GibddFines fines = apiTatar.getFines(user.getDefaultVehicle());

            //get payment histories
            PaymentHistories paymentHistories = apiTatar.getPaymentHistories(user.getId(), new Paginate());

            //send sms
            apiTatar.sendSMS(user.getId(), "message text");

View Full Code Here

TOP

Related Classes of com.uip.tatar.model.history.Paginate

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.