001package edu.pdx.cs410J.whitlock.client; 002 003import com.google.gwt.user.client.rpc.AsyncCallback; 004 005/** 006 * The client-side interface to the ping service 007 */ 008public interface AppointmentBookServiceAsync { 009 010 /** 011 * Return the current date/time on the server 012 */ 013 void createAppointmentBook(int numberOfAppointments, AsyncCallback<AppointmentBook> async); 014}