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