Example #1
0
 /// <param name='operations'>
 /// The operations group for this extension method.
 /// </param>
 /// <param name='studentIds'>
 /// Student ids for bulk query. Must contain 1 to 1000 elements
 /// </param>
 /// <param name='periodFrom'>
 /// Beginning of the range for start date of the students' school courses.
 /// </param>
 /// <param name='periodTo'>
 /// End of the range for start date of the students' school courses.
 /// </param>
 /// <param name='schoolCode'>
 /// The school code for which to get data.
 /// </param>
 /// <param name='xSelectedSchoolCode'>
 /// Selected school code, used when multiple impersonation permissions are
 /// available on the token
 /// </param>
 /// <param name='cancellationToken'>
 /// The cancellation token.
 /// </param>
 public static async Task <IList <StudentSchoolCoursesExternalResponse> > GetAsync(this IStudentSchoolCoursesExternal operations, IList <System.Guid> studentIds, System.DateTime periodFrom, System.DateTime periodTo, string schoolCode, string xSelectedSchoolCode = default(string), CancellationToken cancellationToken = default(CancellationToken))
 {
     using (var _result = await operations.GetWithHttpMessagesAsync(studentIds, periodFrom, periodTo, schoolCode, xSelectedSchoolCode, null, cancellationToken).ConfigureAwait(false))
     {
         return(_result.Body);
     }
 }
Example #2
0
 /// <param name='operations'>
 /// The operations group for this extension method.
 /// </param>
 /// <param name='studentIds'>
 /// Student ids for bulk query. Must contain 1 to 1000 elements
 /// </param>
 /// <param name='periodFrom'>
 /// Beginning of the range for start date of the students' school courses.
 /// </param>
 /// <param name='periodTo'>
 /// End of the range for start date of the students' school courses.
 /// </param>
 /// <param name='schoolCode'>
 /// The school code for which to get data.
 /// </param>
 /// <param name='xSelectedSchoolCode'>
 /// Selected school code, used when multiple impersonation permissions are
 /// available on the token
 /// </param>
 public static IList <StudentSchoolCoursesExternalResponse> Get(this IStudentSchoolCoursesExternal operations, IList <System.Guid> studentIds, System.DateTime periodFrom, System.DateTime periodTo, string schoolCode, string xSelectedSchoolCode = default(string))
 {
     return(operations.GetAsync(studentIds, periodFrom, periodTo, schoolCode, xSelectedSchoolCode).GetAwaiter().GetResult());
 }