Ejemplo n.º 1
0
 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));
 }
Ejemplo n.º 2
0
 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);
 }
Ejemplo n.º 3
0
 System.Threading.Tasks.Task <ClientApplication.EmployeeService.StartStudyResponse> ClientApplication.EmployeeService.IService.StartStudyAsync(ClientApplication.EmployeeService.StartStudyRequest request)
 {
     return(base.Channel.StartStudyAsync(request));
 }
Ejemplo n.º 4
0
 ClientApplication.EmployeeService.StartStudyResponse ClientApplication.EmployeeService.IService.StartStudy(ClientApplication.EmployeeService.StartStudyRequest request)
 {
     return(base.Channel.StartStudy(request));
 }