示例#1
0
 public ReservationController(ISportEventManager sportEventManager, IHallManager hallManager, IBuildingManager buildingManager)
 {
     _hallManager       = hallManager;
     _sportEventManager = sportEventManager;
     _buildingManager   = buildingManager;
 }
 public EFBuildingManager(IBuildingRepository buildingRepository, IHallManager hallManager)
 {
     _buildingRepository = buildingRepository;
     _hallManager        = hallManager;
 }
示例#3
0
 public HallController(IHallManager hallManager, IBuildingManager buildingManager, ISportManager sportManager)
 {
     _hallManager     = hallManager;
     _buildingManager = buildingManager;
     _sportManager    = sportManager;
 }
 public HallApiController(IHallManager hallManager, IMapper mapper)
 {
     _hallManager = hallManager;
     _mapper      = mapper;
 }
示例#5
0
 public HallAndShelfAPI(IHallManager hallManager, IShelfManager shelfManager)
 {
     this.hallManager  = hallManager;
     this.shelfManager = shelfManager;
 }