Method | Description | |
---|---|---|
Delete ( int id ) : void | ||
Get ( int id ) : |
One specific program, by its identifier
|
|
Get ( ) : IEnumerable |
All academic programs, sorted by program code
|
|
GetList ( string list ) : IEnumerable |
All academic programs, to be used in a lookup list
|
|
GetWithSubjects ( string subjects ) : IEnumerable |
All academic programs, each with their subjects
|
|
Post ( |
||
Put ( int id, |
public Get ( int id ) : |
||
id | int | Program identifier |
return |
public GetList ( string list ) : IEnumerable |
||
list | string | Append the query string 'list' |
return | IEnumerable |
public GetWithSubjects ( string subjects ) : IEnumerable |
||
subjects | string | Append the query string 'subjects' |
return | IEnumerable |
public Post ( |
||
newProgram | ||
return |
public Put ( int id, |
||
id | int | |
updatedProgram | ||
return |