Example #1
0
 public RentController(IRent rent, IMarketBll market, IBoothManager boothManager)
 {
     _rent         = rent;
     _market       = market;
     _boothManager = boothManager;
 }
Example #2
0
        public MarketController(IMarketBll marketBll, IBoothManager boothManager)
        {
            this._marketBll = marketBll;

            this._boothManager = boothManager;
        }