Пример #1
0
 public System.Collections.ObjectModel.ObservableCollection <LeaveSample.Entities.Leave> ListLeavesByEmployee(int maximumRows, int startRowIndex, string sortExpression, string employee, System.Nullable <LeaveSample.Entities.LeaveCategories> category, System.Nullable <LeaveSample.Entities.LeaveStatuses> status, out int totalRowCount)
 {
     LeaveSample.UI.Process.LeaveService.ListLeavesByEmployeeRequest inValue = new LeaveSample.UI.Process.LeaveService.ListLeavesByEmployeeRequest();
     inValue.maximumRows    = maximumRows;
     inValue.startRowIndex  = startRowIndex;
     inValue.sortExpression = sortExpression;
     inValue.employee       = employee;
     inValue.category       = category;
     inValue.status         = status;
     LeaveSample.UI.Process.LeaveService.ListLeavesByEmployeeResponse retVal = ((LeaveSample.UI.Process.LeaveService.ILeaveService)(this)).ListLeavesByEmployee(inValue);
     totalRowCount = retVal.totalRowCount;
     return(retVal.ListLeavesByEmployeeResult);
 }
Пример #2
0
 public System.Threading.Tasks.Task <LeaveSample.UI.Process.LeaveService.ListLeavesByEmployeeResponse> ListLeavesByEmployeeAsync(LeaveSample.UI.Process.LeaveService.ListLeavesByEmployeeRequest request)
 {
     return(base.Channel.ListLeavesByEmployeeAsync(request));
 }
Пример #3
0
 LeaveSample.UI.Process.LeaveService.ListLeavesByEmployeeResponse LeaveSample.UI.Process.LeaveService.ILeaveService.ListLeavesByEmployee(LeaveSample.UI.Process.LeaveService.ListLeavesByEmployeeRequest request)
 {
     return(base.Channel.ListLeavesByEmployee(request));
 }