public W30395(string programID, string programName) : base(programID, programName)
        {
            InitializeComponent();
            this.Text = _ProgramID + "─" + _ProgramName;

            dao30395 = new D30395();
        }
            public TGF(D30395 dao, string startMonth)
                : base(dao, startMonth)
            {
                //初始化設定,先讓父類別把共用參數設定好,再設定自己特定的參數

                KindId     = "TGF";
                SheetIndex = SheetType.TGF;
                //RowBegin = 2;
            }
 public Report30395(D30395 dao, string startMonth)
 {
     Dao        = dao;
     StartMonth = startMonth;
 }