Esempio n. 1
0
 public EventsController(ITicketService ticketService, IWebHostEnvironment environment, IEventService eventService, IEventTypeService eventTypeService, IEventSubTypeService eventSubTypeService, IArtistService artistService, ILocationService locationService)
 {
     this.eventService        = eventService;
     this.eventTypeService    = eventTypeService;
     this.eventSubTypeService = eventSubTypeService;
     this.artistService       = artistService;
     this.locationService     = locationService;
     this.ticketService       = ticketService;
     _environment             = environment;
 }
Esempio n. 2
0
 public HomeController(IEventService eventService, IEventTypeService eventTypeService, IEventSubTypeService eventSubTypeService)
 {
     this.eventService        = eventService;
     this.eventTypeService    = eventTypeService;
     this.eventSubTypeService = eventSubTypeService;
 }