001package edu.pdx.cs410J.whitlock.client;
002
003import com.google.gwt.user.client.rpc.RemoteService;
004import com.google.gwt.user.client.rpc.RemoteServiceRelativePath;
005
006/**
007 * A GWT remote service that returns a dummy appointment book
008 */
009@RemoteServiceRelativePath("appointments")
010public interface AppointmentBookService extends RemoteService {
011
012  /**
013   * Returns the current date and time on the server
014   * @param numberOfAppointments
015   */
016  public AppointmentBook createAppointmentBook(int numberOfAppointments);
017
018}