示例#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;
        }