Beispiel #1
0
        public MakeTranday(Channel_Info channel)
        {
            // lấy thông tin ngày giao dịch
            logger       = LogManager.GetLogger(System.Reflection.MethodBase.GetCurrentMethod().DeclaringType);
            _channel     = channel;
            _dalTranday  = new D_Tranday();
            _dalAc       = new D_Account();
            _dalTrancode = new D_TranCode();

            // Ghi log
            if (logger.IsDebugEnabled)
            {
                logger.Debug(string.Format("Create MakeTranday object successfull"));
            }
        }
Beispiel #2
0
 public BaseTrancode()
 {
     _dalTrancode = new D_TranCode();
 }