public EventTypeXEventGenreController(IEventTypeXEventGenreService eventTypeXEventGenreService, IIdentityService identityService, IMapper mapper, IEventParentService eventParentService)
 {
     _eventTypeXEventGenreService = eventTypeXEventGenreService;
     _identityService             = identityService;
     _mapper             = mapper;
     _eventParentService = eventParentService;
 }
Пример #2
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;
 }