1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
| Quintiq file version 2.0
| #parent: #root
| StaticMethod Create (
| SWF_SyncState owner,
| String name,
| String description,
| String parentname,
| SWF_User primary_user
| ) as SWF_Role
| {
| Description: 'Create and return new role with [name], [description] and [primary_user]'
| TextBody:
| [*
| role := owner.Role( relnew,
| Dataset := owner.SyncStateOwner().Dataset(),
| Name := name );
|
| role.Update( description, parentname, primary_user );
|
| return role;
| *]
| }
|
|