Exemple #1
0
 public RemoteOperationMessageFilter(
     IOrderRecordBll orderRecordBll, IUserBll userBll, IShopBll shopBll)
 {
     _orderRecordBll = orderRecordBll;
     _userBll        = userBll;
     _shopBll        = shopBll;
 }
 public ViewShopManage(IViewFactory viewFacktory, IShopBll shopBll)
 {
     InitializeComponent();
     _viewFacktory = viewFacktory;
     _shopBll      = shopBll;
     Init();
 }
 public OrderRecordListControl(IShopBll shopBll, IOrderStateBll orderStateBll)
 {
     InitializeComponent();
     SdgvOrderRecordList.AutoGenerateColumns = false;
     _orderStateBll = orderStateBll;
     _shopBll       = shopBll;
     Init();
 }
        public ViewOrderRecordInfoOpt(IOrderStateBll orderStateBll,
                                      IShopBll shopBll, IOrderTypeBll orderTypeBll, IOrderRecordBll orderRecordBll)
        {
            InitializeComponent();

            _orderStateBll  = orderStateBll;
            _shopBll        = shopBll;
            _orderTypeBll   = orderTypeBll;
            _orderRecordBll = orderRecordBll;
            Init();
        }
Exemple #5
0
        public ViewOptMain(IViewFactory viewFactory, IUserSubAccountBll subAccountBll,
                           IAreaBll areaBll, IRemoteOperationBll remoteOperationBll, IShopBll shopBll,
                           IOrderRecordBll orderRecordBll, IOrderStateBll orderStateBll, IGlobalApplicationData globalApplicationData)
        {
            InitializeComponent();

            _viewFactory           = viewFactory;
            _subAccountBll         = subAccountBll;
            _areaBll               = areaBll;
            _remoteOperationBll    = remoteOperationBll;
            _shopBll               = shopBll;
            _orderRecordBll        = orderRecordBll;
            _orderStateBll         = orderStateBll;
            _globalApplicationData = globalApplicationData;
            Init();
        }
Exemple #6
0
 public ViewAddShop(IShopBll shopBll)
 {
     InitializeComponent();
     _shopBll = shopBll;
     Init();
 }
Exemple #7
0
 public ShopMessageFilter(IShopBll shopBll)
 {
     _shopBll = shopBll;
 }
Exemple #8
0
 public UserSubAccountMessageFilter(IUserSubAccountBll subAccountBll, IShopBll shopBll)
 {
     _subAccountBll = subAccountBll;
     _shopBll       = shopBll;
 }