1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
| Quintiq file version 2.0
| #parent: #root
| StaticMethod Create (
| LibCal_Event owner_i,
| Number weekDay_i
| ) as LibCal_RecurrencePatternWeekly
| {
| TextBody:
| [*
| return LibCal_RecurrencePatternWeekly::Create( owner_i,
| weekDay_i = monday,
| weekDay_i = tuesday,
| weekDay_i = wednesday,
| weekDay_i = thursday,
| weekDay_i = friday,
| weekDay_i = saturday,
| weekDay_i = sunday );
| *]
| InterfaceProperties { Accessibility: 'Module' }
| }
|
|