public TMEventModelsController(ITMEventService tmeventService,
                                ITMLayoutService tmlayoutService, IVenueService venueService)
 {
     _tmeventService  = tmeventService;
     _tmlayoutService = tmlayoutService;
     _venueService    = venueService;
 }
Ejemplo n.º 2
0
 public PurchaceService(IPurchaseHistoryRepository purchaseHistoryRepository,
                        ITMEventAreaService tmeventAreaService, ITMEventService tmeventService,
                        ITMEventSeatService tmeventSeatService, IUserService userService)
 {
     _purchaseHistoryRepository = purchaseHistoryRepository;
     _tmeventAreaService        = tmeventAreaService;
     _tmeventService            = tmeventService;
     _tmeventSeatService        = tmeventSeatService;
     _userService = userService;
 }