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(); }
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(); }
public ViewAddShop(IShopBll shopBll) { InitializeComponent(); _shopBll = shopBll; Init(); }
public ShopMessageFilter(IShopBll shopBll) { _shopBll = shopBll; }
public UserSubAccountMessageFilter(IUserSubAccountBll subAccountBll, IShopBll shopBll) { _subAccountBll = subAccountBll; _shopBll = shopBll; }