コード例 #1
0
 public bool CreateRent(CarajDesktop.CompanyService.RentDetailsRequestDto dto)
 {
     CarajDesktop.CompanyService.CreateRentRequest inValue = new CarajDesktop.CompanyService.CreateRentRequest();
     inValue.Body     = new CarajDesktop.CompanyService.CreateRentRequestBody();
     inValue.Body.dto = dto;
     CarajDesktop.CompanyService.CreateRentResponse retVal = ((CarajDesktop.CompanyService.CompanyServiceSoap)(this)).CreateRent(inValue);
     return(retVal.Body.CreateRentResult);
 }
コード例 #2
0
 public CreateRentRequestBody(CarajDesktop.CompanyService.RentDetailsRequestDto dto)
 {
     this.dto = dto;
 }
コード例 #3
0
 public System.Threading.Tasks.Task <CarajDesktop.CompanyService.CreateRentResponse> CreateRentAsync(CarajDesktop.CompanyService.RentDetailsRequestDto dto)
 {
     CarajDesktop.CompanyService.CreateRentRequest inValue = new CarajDesktop.CompanyService.CreateRentRequest();
     inValue.Body     = new CarajDesktop.CompanyService.CreateRentRequestBody();
     inValue.Body.dto = dto;
     return(((CarajDesktop.CompanyService.CompanyServiceSoap)(this)).CreateRentAsync(inValue));
 }