예제 #1
0
 public SetupPollCommand(
     IEventSetupQuery eventSetupQuery,
     IUpdateEventSetupCommand updateEventSetupCommand
     )
     : base()
 {
     this.eventSetupQuery         = eventSetupQuery;
     this.updateEventSetupCommand = updateEventSetupCommand;
 }
예제 #2
0
 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;
 }