public GeneralMenu(IStoreLocationBL StoreLoBL, IBuyerBL buyerBL, IOrderBL orderBL, IManagerBL managerBL) { this._storeLoBL = StoreLoBL; this._buyerBL = buyerBL; this._orderBL = orderBL; this._managerBL = managerBL; }
public ManagerMenu(IStoreLocationBL StoreLoBL, IOrderBL OBL, IManagerBL MBL) { this._storeLoBL = StoreLoBL; this._orBL = OBL; this._mBL = MBL; }
/// <summary> /// Menu for the customers /// </summary> /// <param name="StoreLoBL">StoreBL to be enacted upon</param> /// <param name="BuyerBL">Buyer BL for buyer based queries</param> /// <param name="OBL">Order BL for order based queries</param> public CustomerMenu(IStoreLocationBL StoreLoBL, IBuyerBL BuyerBL, IOrderBL OBL) { this._storeLoBL = StoreLoBL; this._buyerBL = BuyerBL; this._orBL = OBL; }