优惠券订单及其他脚本

PHPExcel_Reader_Excel5.cs 1.5KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace ClassDiagrams
  5. {
  6. public class PHPExcel_Reader_Excel5 : PHPExcel_Reader_IReader
  7. {
  8. #region PHPExcel_Writer_IReader Members
  9. public PHPExcel reads
  10. {
  11. get
  12. {
  13. throw new Exception("The method or operation is not implemented.");
  14. }
  15. set
  16. {
  17. throw new Exception("The method or operation is not implemented.");
  18. }
  19. }
  20. #endregion
  21. }
  22. public class PHPExcel_Reader_Excel2003XML : PHPExcel_Reader_IReader
  23. {
  24. #region PHPExcel_Writer_IReader Members
  25. public PHPExcel reads
  26. {
  27. get
  28. {
  29. throw new Exception("The method or operation is not implemented.");
  30. }
  31. set
  32. {
  33. throw new Exception("The method or operation is not implemented.");
  34. }
  35. }
  36. #endregion
  37. }
  38. public class PHPExcel_Reader_SYLK : PHPExcel_Reader_IReader
  39. {
  40. #region PHPExcel_Writer_IReader Members
  41. public PHPExcel reads
  42. {
  43. get
  44. {
  45. throw new Exception("The method or operation is not implemented.");
  46. }
  47. set
  48. {
  49. throw new Exception("The method or operation is not implemented.");
  50. }
  51. }
  52. #endregion
  53. }
  54. }