Example #1
0
 public System.Threading.Tasks.Task <PointsStudentView.PointsService.UsePointsResponse> UsePointsAsync(string userRole, string studentNumber, double points)
 {
     PointsStudentView.PointsService.UsePointsRequest inValue = new PointsStudentView.PointsService.UsePointsRequest();
     inValue.Body               = new PointsStudentView.PointsService.UsePointsRequestBody();
     inValue.Body.userRole      = userRole;
     inValue.Body.studentNumber = studentNumber;
     inValue.Body.points        = points;
     return(((PointsStudentView.PointsService.PointsServiceSoap)(this)).UsePointsAsync(inValue));
 }
Example #2
0
 public bool UsePoints(string userRole, string studentNumber, double points)
 {
     PointsStudentView.PointsService.UsePointsRequest inValue = new PointsStudentView.PointsService.UsePointsRequest();
     inValue.Body               = new PointsStudentView.PointsService.UsePointsRequestBody();
     inValue.Body.userRole      = userRole;
     inValue.Body.studentNumber = studentNumber;
     inValue.Body.points        = points;
     PointsStudentView.PointsService.UsePointsResponse retVal = ((PointsStudentView.PointsService.PointsServiceSoap)(this)).UsePoints(inValue);
     return(retVal.Body.UsePointsResult);
 }
Example #3
0
 System.Threading.Tasks.Task <PointsStudentView.PointsService.UsePointsResponse> PointsStudentView.PointsService.PointsServiceSoap.UsePointsAsync(PointsStudentView.PointsService.UsePointsRequest request)
 {
     return(base.Channel.UsePointsAsync(request));
 }
Example #4
0
 PointsStudentView.PointsService.UsePointsResponse PointsStudentView.PointsService.PointsServiceSoap.UsePoints(PointsStudentView.PointsService.UsePointsRequest request)
 {
     return(base.Channel.UsePoints(request));
 }