static AppointmentRepositoryADO() { me = new AppointmentRepositoryADO(); }
public static int DeleteAppointment(int id) { return(AppointmentRepositoryADO.DeleteAppointment(id)); }
public static IList <Appointment> GetAppointments() { return(new List <Appointment>(AppointmentRepositoryADO.GetAppointments())); }
public static int SaveAppointment(Appointment item) { return(AppointmentRepositoryADO.SaveAppointment(item)); }
public static Appointment GetAppointment(int id) { return(AppointmentRepositoryADO.GetAppointment(id)); }