[]
Initializes a new instance of the DateAppointmentsCollection collection for the specified date range with appointment from the specified C1.Schedule.AppointmentCollection collection.
public DateAppointmentsCollection(DateTime start, DateTime end, AppointmentCollection appointmentCollection)
Type | Name | Description |
---|---|---|
DateTime | start | The DateTime value representing the beginning of the date range. |
DateTime | end | The DateTime value representing the end of the date range. |
AppointmentCollection | appointmentCollection | The C1.Schedule.AppointmentCollection collection for getting appointments from. |
Initializes a new instance of the DateAppointmentsCollection collection for the specified date range with appointment from the specified C1.Schedule.AppointmentCollection collection.
public DateAppointmentsCollection(DateTime start, DateTime end, AppointmentCollection appointmentCollection, bool includeEmptyDays, bool includePrivateAppointments)
Type | Name | Description |
---|---|---|
DateTime | start | The DateTime value representing the beginning of the date range. |
DateTime | end | The DateTime value representing the end of the date range. |
AppointmentCollection | appointmentCollection | The C1.Schedule.AppointmentCollection collection for getting appointments from. |
bool | includeEmptyDays | The bool value specifying whether to include days without appointments into collection. |
bool | includePrivateAppointments | The bool value specifying whether to include private appointments into collection. |
Initializes a new instance of the DateAppointmentsCollection collection for the specified date range with appointment from the specified C1.Schedule.AppointmentCollection collection.
public DateAppointmentsCollection(DateTime start, DateTime end, AppointmentCollection appointmentCollection, CalendarInfo calendarInfo, bool includeEmptyDays, bool includeWeekends, bool includePrivateAppointments)
Type | Name | Description |
---|---|---|
DateTime | start | The DateTime value representing the beginning of the date range. |
DateTime | end | The DateTime value representing the end of the date range. |
AppointmentCollection | appointmentCollection | The C1.Schedule.AppointmentCollection collection for getting appointments from. |
CalendarInfo | calendarInfo | The C1.Schedule.CalendarInfo object containing calendar specific information. |
bool | includeEmptyDays | The bool value specifying whether to include days without appointments into collection. |
bool | includeWeekends | The bool value specifying whether to include weekend days into collection. |
bool | includePrivateAppointments | The bool value specifying whether to include private appointments into collection. |
Initializes a new instance of the DateAppointmentsCollection collection for the specified date range with appointment from the specified C1.Schedule.AppointmentCollection collection.
public DateAppointmentsCollection(DateTime start, DateTime end, IList<Appointment> appointments, bool includeEmptyDays)
Type | Name | Description |
---|---|---|
DateTime | start | The DateTime value representing the beginning of the date range. |
DateTime | end | The DateTime value representing the end of the date range. |
IList<Appointment> | appointments | The IList<T> list of appointments. |
bool | includeEmptyDays | The bool value specifying whether to include days without appointments into collection. |
Initializes a new instance of the DateAppointmentsCollection collection for the specified date range with appointment from the specified C1.Schedule.AppointmentCollection collection.
public DateAppointmentsCollection(DateTime start, DateTime end, IList<Appointment> appointments, CalendarInfo calendarInfo, bool includeEmptyDays, bool includeWeekends)
Type | Name | Description |
---|---|---|
DateTime | start | The DateTime value representing the beginning of the date range. |
DateTime | end | The DateTime value representing the end of the date range. |
IList<Appointment> | appointments | The IList<T> list of appointments. |
CalendarInfo | calendarInfo | The C1.Schedule.CalendarInfo object containing calendar specific information. |
bool | includeEmptyDays | The bool value specifying whether to include days without appointments into collection. |
bool | includeWeekends | The bool value specifying whether to include weekend days into collection. |