Exemplo n.º 1
0
 public CourseCommandHandler(
     ICourseRepository repository,
     CommandStoreService commandStoreService)
 {
     _repository          = repository;
     _commandStoreService = commandStoreService;
 }
Exemplo n.º 2
0
 public ParkingController(DbContext dbContext, AuthenticationService authenticationService, CommandStoreService commandStoreService, ParkingQueryHandler queryHandler, CommandRouter commandRouter)
 {
     _dbContext             = dbContext;
     _authenticationService = authenticationService;
     _commandStoreService   = commandStoreService;
     _queryHandler          = queryHandler;
     _commandRouter         = commandRouter;
 }
Exemplo n.º 3
0
 public UserCommandHandler(
     IUserRepository repository,
     CommandStoreService commandStoreService,
     IMapper mapper)
 {
     _repository          = repository;
     _commandStoreService = commandStoreService;
     _mapper = mapper;
 }
 public ParkingCommandHandler(
     DbContext dbContext,
     CommandStoreService commandStoreService,
     AuthenticationService authenticationService
     )
 {
     _dbContext             = dbContext;
     _commandStoreService   = commandStoreService;
     _authenticationService = authenticationService;
 }
Exemplo n.º 5
0
 public CloseParkingCommandHandler(DbContext dbContext, CommandStoreService commandStoreService)
 {
     _dbContext           = dbContext;
     _commandStoreService = commandStoreService;
 }
Exemplo n.º 6
0
 public AssignmentCommandHandler(IAssignmentRepository repository, CommandStoreService commandStoreService)
 {
     _repository          = repository;
     _commandStoreService = commandStoreService;
 }
Exemplo n.º 7
0
 public LeaveParkingPlaceCommandHandler(DbContext dbContext, CommandStoreService commandStoreService)
 {
     _dbContext           = dbContext;
     _commandStoreService = commandStoreService;
 }
Exemplo n.º 8
0
 public PeopleCommandHandler(DbContext context, CommandStoreService commandStore)
 {
     _dbContext           = context;
     _commandStoreService = commandStore;
 }