コード例 #1
0
 public PersonXTicketController(IPersonXTicketService personXTicketService, ITicketService ticketService, IIdentityService identityService, IMapper mapper)
 {
     _personXTicketService = personXTicketService;
     _ticketService        = ticketService;
     _identityService      = identityService;
     _mapper = mapper;
 }
コード例 #2
0
ファイル: PersonController.cs プロジェクト: rebeca27/daw2020
 public PersonController(IIdentityService identityService, IMapper mapper, IEventParentService eventParentService, ITicketService ticketService, IPersonXTicketService personXTicketService)
 {
     _identityService      = identityService;
     _eventParentService   = eventParentService;
     _ticketService        = ticketService;
     _personXTicketService = personXTicketService;
     _mapper = mapper;
 }
コード例 #3
0
 public EventParentController(IEventParentService eventParentService, IIdentityService identityService, IMapper mapper, IEventTypeService eventTypeService, IEventGenreService eventGenreService, ILocationService locationService, IEventTypeXEventGenreService eventTypeXEventGenreService, ITicketService ticketService, IPersonXTicketService personXTicketService)
 {
     _eventParentService          = eventParentService;
     _identityService             = identityService;
     _mapper                      = mapper;
     _eventTypeService            = eventTypeService;
     _eventGenreService           = eventGenreService;
     _locationService             = locationService;
     _eventTypeXEventGenreService = eventTypeXEventGenreService;
     _ticketService               = ticketService;
     _personXTicketService        = personXTicketService;
 }