Example #1
0
 public TMEventService(ITMEventRepository tmeventRepository, ITMEventAreaService tmeventAreaService,
                       ITMEventSeatService tmeventSeatService)
 {
     _tmeventRepository  = tmeventRepository;
     _tmeventAreaService = tmeventAreaService;
     _tmeventSeatService = tmeventSeatService;
 }
 public PurchaceService(IPurchaseHistoryRepository purchaseHistoryRepository,
                        ITMEventAreaService tmeventAreaService, ITMEventService tmeventService,
                        ITMEventSeatService tmeventSeatService, IUserService userService)
 {
     _purchaseHistoryRepository = purchaseHistoryRepository;
     _tmeventAreaService        = tmeventAreaService;
     _tmeventService            = tmeventService;
     _tmeventSeatService        = tmeventSeatService;
     _userService = userService;
 }
 public PurchaseController(IPurchaceService purchaceService,
                           ITMEventAreaService tmeventAreaService)
 {
     _purchaceService    = purchaceService;
     _tmeventAreaService = tmeventAreaService;
 }