public System.Threading.Tasks.Task <sendPackResponse> sendPackAsync(string fileName, byte[] contentFile)
        {
            sendPackRequest inValue = new sendPackRequest();

            inValue.fileName    = fileName;
            inValue.contentFile = contentFile;
            return(((billService)(this)).sendPackAsync(inValue));
        }
        public string sendPack(string fileName, byte[] contentFile)
        {
            sendPackRequest inValue = new sendPackRequest();

            inValue.fileName    = fileName;
            inValue.contentFile = contentFile;
            sendPackResponse retVal = ((billService)(this)).sendPack(inValue);

            return(retVal.ticket);
        }
 System.Threading.Tasks.Task <sendPackResponse> billService.sendPackAsync(sendPackRequest request)
 {
     return(base.Channel.sendPackAsync(request));
 }
 sendPackResponse billService.sendPack(sendPackRequest request)
 {
     return(base.Channel.sendPack(request));
 }