Esempio n. 1
0
        public void OutputToExcel(IOtherFormatOutput otherFormat)
        {
            IOtherFormatOutput _ExcelOutput = otherFormat;

            _ExcelOutput.ExcelOutput();
        }
Esempio n. 2
0
        public void OutputTotext(IOtherFormatOutput otherFormat)
        {
            IOtherFormatOutput _otherFormat = otherFormat;

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

            _rawOutput.RawOutput();
        }