Ejemplo n.º 1
0
        public ETLExportBO(IETLDAL etlDAL)
        {
            this.etlDAL = etlDAL;

            config = etlDAL.GetETLExportConfiguration();

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

        public ETLBO(IETLDAL etlDAL)
        {
            this.etlDAL = etlDAL;
        }
Ejemplo n.º 3
0
        private IETLDAL etlDAL;  //interface which defines which data methods are required

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