コード例 #1
0
        public ETLExportBO(IETLDAL etlDAL)
        {
            this.etlDAL = etlDAL;

            config = etlDAL.GetETLExportConfiguration();

            if (config.AvailabillityIndicator == false)
            {
                throw new MGREException("ETL Export is unavailble");
            }
        }
コード例 #2
0
        private IETLDAL etlDAL;  //interface which defines which data methods are required

        public ETLBO(IETLDAL etlDAL)
        {
            this.etlDAL = etlDAL;
        }
コード例 #3
0
ファイル: DualAppBO.cs プロジェクト: deancox9/ETL
        private IETLDAL etlDAL;  //interface which defines which data methods are required

        public DualAppBO(IETLDAL etlDAL)
        {
            this.etlDAL = etlDAL;
        }