Beispiel #1
0
 public PollAnswer(
     DataAccess.Queries.PoGo.IIsActivePoll isActivePoll,
     DataAccess.Queries.PoGo.IActivePoll activePoll,
     DataAccess.Commands.PoGo.IPollVoteUpdateCommand pollVoteUpdateCommand,
     DataAccess.Commands.Raid.IAddUserCommand addUserCommand,
     DataAccess.Queries.Raid.IGetUserVoteQuery getUserVoteQuery
     )
 {
     this.isActivePoll          = isActivePoll;
     this.activePoll            = activePoll;
     this.pollVoteUpdateCommand = pollVoteUpdateCommand;
     this.addUserCommand        = addUserCommand;
     this.getUserVoteQuery      = getUserVoteQuery;
 }
 public EventSetupAnswer(
     IIsActiveEventSetupQuery isActiveEventSetupQuery,
     IEventSetupQuery eventSetupQuery,
     IUpdateEventSetupCommand updateEventSetup,
     DataAccess.Commands.Raid.IAddUserCommand addUserCommand,
     IEventLocationsQuery eventLocationsQuery,
     IEventLocationByIdQuery eventLocationByIdQuery,
     ICreateEventCommand createEventCommand
     )
 {
     this.isActiveEventSetupQuery = isActiveEventSetupQuery;
     this.eventSetupQuery         = eventSetupQuery;
     this.updateEventSetup        = updateEventSetup;
     this.addUserCommand          = addUserCommand;
     this.eventLocationsQuery     = eventLocationsQuery;
     this.eventLocationByIdQuery  = eventLocationByIdQuery;
     this.createEventCommand      = createEventCommand;
 }