Ejemplo n.º 1
0
 public ViewAddSubAccount(IUserSubAccountBll subAccountBll, IAreaBll areaBll)
 {
     InitializeComponent();
     _subAccountBll = subAccountBll;
     _areaBll       = areaBll;
     Init();
 }
Ejemplo n.º 2
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();
        }
Ejemplo n.º 3
0
 /// <summary>
 ///  Initializes a new instance of the <see cref="AreaController" /> class.
 /// </summary>
 /// <param name="Area"></param>
 public AreaController(IAreaBll area)
 {
     _area = area;
 }