Example #1
0
        public System.Threading.Tasks.Task <GetReporteesECResponse> GetReporteesECAsync(string systemUserName, string systemPassword, string userSSN, bool retrieveInActiveReportee, bool retrieveSubEnitiy, System.Nullable <int> maximumReporteeCount)
        {
            GetReporteesECRequest inValue = new GetReporteesECRequest();

            inValue.Body = new GetReporteesECRequestBody();
            inValue.Body.systemUserName           = systemUserName;
            inValue.Body.systemPassword           = systemPassword;
            inValue.Body.userSSN                  = userSSN;
            inValue.Body.retrieveInActiveReportee = retrieveInActiveReportee;
            inValue.Body.retrieveSubEnitiy        = retrieveSubEnitiy;
            inValue.Body.maximumReporteeCount     = maximumReporteeCount;
            return(((IAuthorizationAdministrationEC)(this)).GetReporteesECAsync(inValue));
        }
Example #2
0
        public ExternalReporteeBEList GetReporteesEC(string systemUserName, string systemPassword, string userSSN, bool retrieveInActiveReportee, bool retrieveSubEnitiy, System.Nullable <int> maximumReporteeCount)
        {
            GetReporteesECRequest inValue = new GetReporteesECRequest();

            inValue.Body = new GetReporteesECRequestBody();
            inValue.Body.systemUserName           = systemUserName;
            inValue.Body.systemPassword           = systemPassword;
            inValue.Body.userSSN                  = userSSN;
            inValue.Body.retrieveInActiveReportee = retrieveInActiveReportee;
            inValue.Body.retrieveSubEnitiy        = retrieveSubEnitiy;
            inValue.Body.maximumReporteeCount     = maximumReporteeCount;
            GetReporteesECResponse retVal = ((IAuthorizationAdministrationEC)(this)).GetReporteesEC(inValue);

            return(retVal.Body.GetReporteesECResult);
        }
Example #3
0
 System.Threading.Tasks.Task <GetReporteesECResponse> IAuthorizationAdministrationEC.GetReporteesECAsync(GetReporteesECRequest request)
 {
     return(base.Channel.GetReporteesECAsync(request));
 }
Example #4
0
 GetReporteesECResponse IAuthorizationAdministrationEC.GetReporteesEC(GetReporteesECRequest request)
 {
     return(base.Channel.GetReporteesEC(request));
 }