コード例 #1
0
ファイル: Reference.cs プロジェクト: DVDPT/cos
 public System.Threading.Tasks.Task <ClientApplication.EmployeeService.StartStudyResponse> StartStudyAsync(int studyId, string[] topics, System.TimeSpan duration, int employeeId)
 {
     ClientApplication.EmployeeService.StartStudyRequest inValue = new ClientApplication.EmployeeService.StartStudyRequest();
     inValue.studyId    = studyId;
     inValue.topics     = topics;
     inValue.duration   = duration;
     inValue.employeeId = employeeId;
     return(((ClientApplication.EmployeeService.IService)(this)).StartStudyAsync(inValue));
 }
コード例 #2
0
ファイル: Reference.cs プロジェクト: DVDPT/cos
 public void StartStudy(int studyId, string[] topics, System.TimeSpan duration, int employeeId)
 {
     ClientApplication.EmployeeService.StartStudyRequest inValue = new ClientApplication.EmployeeService.StartStudyRequest();
     inValue.studyId    = studyId;
     inValue.topics     = topics;
     inValue.duration   = duration;
     inValue.employeeId = employeeId;
     ClientApplication.EmployeeService.StartStudyResponse retVal = ((ClientApplication.EmployeeService.IService)(this)).StartStudy(inValue);
 }
コード例 #3
0
ファイル: Reference.cs プロジェクト: DVDPT/cos
 System.Threading.Tasks.Task <ClientApplication.EmployeeService.StartStudyResponse> ClientApplication.EmployeeService.IService.StartStudyAsync(ClientApplication.EmployeeService.StartStudyRequest request)
 {
     return(base.Channel.StartStudyAsync(request));
 }
コード例 #4
0
ファイル: Reference.cs プロジェクト: DVDPT/cos
 ClientApplication.EmployeeService.StartStudyResponse ClientApplication.EmployeeService.IService.StartStudy(ClientApplication.EmployeeService.StartStudyRequest request)
 {
     return(base.Channel.StartStudy(request));
 }