/// <param name='operations'> /// The operations group for this extension method. /// </param> /// <param name='dateFrom'> /// Beginning of range for lesson date. /// </param> /// <param name='dateTo'> /// End of range for lesson date. /// </param> /// <param name='pageNumber'> /// The number of the page to return (1 is the first page). /// </param> /// <param name='pageSize'> /// Number of objects per page. /// </param> /// <param name='inlineCount'> /// A flag indicating if total number of items should be included. /// </param> /// <param name='schoolCode'> /// The school code for which to get data. /// </param> /// <param name='departmentId'> /// Department where the lesson is conducted. /// </param> /// <param name='hasExternalId'> /// Flag indicating if lesson contains external id. /// </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 <PagedResponseLessonExternalResponse> GetAsync(this ILessonsExternal operations, System.DateTime dateFrom, System.DateTime dateTo, int pageNumber, int pageSize, bool inlineCount, string schoolCode, System.Guid?departmentId = default(System.Guid?), bool?hasExternalId = default(bool?), string xSelectedSchoolCode = default(string), CancellationToken cancellationToken = default(CancellationToken)) { using (var _result = await operations.GetWithHttpMessagesAsync(dateFrom, dateTo, pageNumber, pageSize, inlineCount, schoolCode, departmentId, hasExternalId, xSelectedSchoolCode, null, cancellationToken).ConfigureAwait(false)) { return(_result.Body); } }
/// <param name='operations'> /// The operations group for this extension method. /// </param> /// <param name='dateFrom'> /// Beginning of range for lesson date. /// </param> /// <param name='dateTo'> /// End of range for lesson date. /// </param> /// <param name='pageNumber'> /// The number of the page to return (1 is the first page). /// </param> /// <param name='pageSize'> /// Number of objects per page. /// </param> /// <param name='inlineCount'> /// A flag indicating if total number of items should be included. /// </param> /// <param name='schoolCode'> /// The school code for which to get data. /// </param> /// <param name='departmentId'> /// Department where the lesson is conducted. /// </param> /// <param name='hasExternalId'> /// Flag indicating if lesson contains external id. /// </param> /// <param name='xSelectedSchoolCode'> /// Selected school code, used when multiple impersonation permissions are /// available on the token /// </param> public static PagedResponseLessonExternalResponse Get(this ILessonsExternal operations, System.DateTime dateFrom, System.DateTime dateTo, int pageNumber, int pageSize, bool inlineCount, string schoolCode, System.Guid?departmentId = default(System.Guid?), bool?hasExternalId = default(bool?), string xSelectedSchoolCode = default(string)) { return(operations.GetAsync(dateFrom, dateTo, pageNumber, pageSize, inlineCount, schoolCode, departmentId, hasExternalId, xSelectedSchoolCode).GetAwaiter().GetResult()); }