public IntervalBase(int?pId, DateTimeDto pCalendarDateEnd, int?pCalendarDateEndId, DateTimeDto pCalendarDateStart, int?pCalendarDateStartId, string pCalendarType, TimePoint pFollowUp, int?pFollowUpId, TimePoint pTimeOfDay, int?pTimeOfDayId) : this(DocConvert.ToInt(pId)) { CalendarDateEnd = pCalendarDateEnd; CalendarDateEndId = pCalendarDateEndId; CalendarDateStart = pCalendarDateStart; CalendarDateStartId = pCalendarDateStartId; CalendarType = pCalendarType; FollowUp = pFollowUp; FollowUpId = pFollowUpId; TimeOfDay = pTimeOfDay; TimeOfDayId = pTimeOfDayId; }
public Interval(int?pId, DateTimeDto pCalendarDateEnd, int?pCalendarDateEndId, DateTimeDto pCalendarDateStart, int?pCalendarDateStartId, string pCalendarType, TimePoint pFollowUp, int?pFollowUpId, TimePoint pTimeOfDay, int?pTimeOfDayId) : base(pId, pCalendarDateEnd, pCalendarDateEndId, pCalendarDateStart, pCalendarDateStartId, pCalendarType, pFollowUp, pFollowUpId, pTimeOfDay, pTimeOfDayId) { }
public void Deconstruct(out DateTimeDto pCalendarDateEnd, out int?pCalendarDateEndId, out DateTimeDto pCalendarDateStart, out int?pCalendarDateStartId, out string pCalendarType, out TimePoint pFollowUp, out int?pFollowUpId, out TimePoint pTimeOfDay, out int?pTimeOfDayId) { pCalendarDateEnd = CalendarDateEnd; pCalendarDateEndId = CalendarDateEndId; pCalendarDateStart = CalendarDateStart; pCalendarDateStartId = CalendarDateStartId; pCalendarType = CalendarType; pFollowUp = FollowUp; pFollowUpId = FollowUpId; pTimeOfDay = TimeOfDay; pTimeOfDayId = TimeOfDayId; }