Пример #1
0
 public EventsController(IEventRepo EventRepository, IArtistEventRepo ArtistEventRepo, ISponsorEventRepo SponsorEventRepo, ILocationRepo LocationRepo)
 {
     _repo             = EventRepository;
     _ArtistEventRepo  = ArtistEventRepo;
     _SponsorEventRepo = SponsorEventRepo;
     _LocationRepo     = LocationRepo;
 }
Пример #2
0
 public SponsorEventsController(ISponsorEventRepo repository)
 {
     _repo = repository;
 }