public System.Threading.Tasks.Task <sendSummaryResponse> sendSummaryAsync(string fileName, byte[] contentFile)
        {
            sendSummaryRequest inValue = new sendSummaryRequest();

            inValue.fileName    = fileName;
            inValue.contentFile = contentFile;
            return(((billService)(this)).sendSummaryAsync(inValue));
        }
        public string sendSummary(string fileName, byte[] contentFile)
        {
            sendSummaryRequest inValue = new sendSummaryRequest();

            inValue.fileName    = fileName;
            inValue.contentFile = contentFile;
            sendSummaryResponse retVal = ((billService)(this)).sendSummary(inValue);

            return(retVal.ticket);
        }
 System.Threading.Tasks.Task <sendSummaryResponse> billService.sendSummaryAsync(sendSummaryRequest request)
 {
     return(base.Channel.sendSummaryAsync(request));
 }
 sendSummaryResponse billService.sendSummary(sendSummaryRequest request)
 {
     return(base.Channel.sendSummary(request));
 }