AppointmentReminders.Web.Workers.SendNotificationsJob.AvailableAppointments C# (CSharp) Method

AvailableAppointments() private static method

private static AvailableAppointments ( ) : IEnumerable
return IEnumerable
        private static IEnumerable<Appointment> AvailableAppointments()
        {
            return new AppointmentsFinder(new AppointmentRepository(), new TimeConverter())
                .FindAvailableAppointments(DateTime.Now);
        }