Exemplo n.º 1
0
 public EditController(IEventsServices eventsServices)
 {
     this.eventsServices = eventsServices;
     this.provider = new IdentifierProvider();
 }
Exemplo n.º 2
0
 public EventsController(IEventsServices eventsServices)
 {
     _eventsServices = eventsServices;
 }
Exemplo n.º 3
0
 public CreateController(IEventsServices eventsServices)
 {
     this.eventsServices = eventsServices;
 }
 public EventsBusinessLogic()
 {
     eventsServices = new EventsServices();
 }
Exemplo n.º 5
0
 public BestController(IEventsServices events)
 {
     this.events = events;
 }
Exemplo n.º 6
0
 public EventImageModel(IEventsServices eventsServices)
 {
     _eventData = eventsServices;
 }
Exemplo n.º 7
0
 public EventsController(IEventsServices eventService)
 {
     _eventService = eventService;
 }
Exemplo n.º 8
0
 public ListController(IEventsServices eventsServices)
 {
     this.eventsServices = eventsServices;
 }
Exemplo n.º 9
0
 public RatesController(IRatesServices rates, IEventsServices events)
 {
     this.rates = rates;
     this.events = events;
 }
Exemplo n.º 10
0
 public DeleteEventModel(IEventsServices eventsServices)
 {
     _eventData = eventsServices;
 }
Exemplo n.º 11
0
 public DetailsController(IEventsServices eventsServices, IUsersServices usersServices)
 {
     this.eventsServices = eventsServices;
     this.usersServices = usersServices;
 }
Exemplo n.º 12
0
 public Events(IEventsServices eventsServices)
 {
     _eventData = eventsServices;
 }