POST api/Course/AssignLecturer
Request Information
URI Parameters
None.
Body Parameters
FeesMaster| Name | Description | Type | Additional information |
|---|---|---|---|
| FeesId | integer |
None. |
|
| CourseId | integer |
None. |
|
| CentreId | integer |
None. |
|
| LecturerId | integer |
None. |
|
| LecturerCommission | integer |
None. |
|
| InstituteCommission | integer |
None. |
|
| Maintenance | decimal number |
None. |
|
| Fee | decimal number |
None. |
|
| HalfFee | decimal number |
None. |
|
| FullFee | decimal number |
None. |
|
| Admission | decimal number |
None. |
Request Formats
application/json, text/json
Sample:
{
"feesId": 1,
"courseId": 2,
"centreId": 3,
"lecturerId": 4,
"lecturerCommission": 5,
"instituteCommission": 6,
"maintenance": 7.1,
"fee": 8.1,
"halfFee": 9.1,
"fullFee": 10.1,
"admission": 11.1
}
application/xml, text/xml
Sample:
<FeesMaster xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DTO"> <Admission>11.1</Admission> <CentreId>3</CentreId> <CourseId>2</CourseId> <Fee>8.1</Fee> <FeesId>1</FeesId> <FullFee>10.1</FullFee> <HalfFee>9.1</HalfFee> <InstituteCommission>6</InstituteCommission> <LecturerCommission>5</LecturerCommission> <LecturerId>4</LecturerId> <Maintenance>7.1</Maintenance> </FeesMaster>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
integerResponse Formats
application/json, text/json
Sample:
1
application/xml, text/xml
Sample:
<int xmlns="http://schemas.microsoft.com/2003/10/Serialization/">1</int>