public TMEventModelsController(ITMEventService tmeventService,
                                ITMLayoutService tmlayoutService, IVenueService venueService)
 {
     _tmeventService  = tmeventService;
     _tmlayoutService = tmlayoutService;
     _venueService    = venueService;
 }
예제 #2
0
 public VenueService(IVenueRepository venueRepository, ITMLayoutService tmlayoutService,
                     IAreaService areaService, ISeatService seatService)
 {
     _venueRepository = venueRepository;
     _tmlayoutService = tmlayoutService;
     _areaService     = areaService;
     _seatService     = seatService;
 }
예제 #3
0
 public VenueModelsController(IVenueService venueService, ISeatService seatService,
                              ITMLayoutService tmlayoutService, IAreaService areaService)
 {
     _venueService    = venueService;
     _seatService     = seatService;
     _tmlayoutService = tmlayoutService;
     _areaService     = areaService;
 }