示例#1
0
        public void OutputToExcel(IOtherFormatOutput otherFormat)
        {
            IOtherFormatOutput _ExcelOutput = otherFormat;

            _ExcelOutput.ExcelOutput();
        }
示例#2
0
        public void OutputTotext(IOtherFormatOutput otherFormat)
        {
            IOtherFormatOutput _otherFormat = otherFormat;

            _otherFormat.TextOutput();
        }
示例#3
0
 public void OutputToText(IOtherFormatOutput TextOutput)
 {
     TextOutput.TextOutput();
 }
示例#4
0
 public void OutputToRaw(IOtherFormatOutput RawOutput)
 {
     RawOutput.RawOutput();
 }
示例#5
0
 public void OutputToExcel(IOtherFormatOutput ExcelOutput)
 {
     ExcelOutput.ExcelOutput();
 }
示例#6
0
        public void RawOutput(IOtherFormatOutput otherFormat)
        {
            IOtherFormatOutput _rawOutput = otherFormat;

            _rawOutput.RawOutput();
        }