Пример #1
0
 public CourseCommandHandler(
     ICourseRepository repository,
     CommandStoreService commandStoreService)
 {
     _repository          = repository;
     _commandStoreService = commandStoreService;
 }
Пример #2
0
 public ParkingController(DbContext dbContext, AuthenticationService authenticationService, CommandStoreService commandStoreService, ParkingQueryHandler queryHandler, CommandRouter commandRouter)
 {
     _dbContext             = dbContext;
     _authenticationService = authenticationService;
     _commandStoreService   = commandStoreService;
     _queryHandler          = queryHandler;
     _commandRouter         = commandRouter;
 }
Пример #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;
 }
Пример #5
0
 public CloseParkingCommandHandler(DbContext dbContext, CommandStoreService commandStoreService)
 {
     _dbContext           = dbContext;
     _commandStoreService = commandStoreService;
 }
Пример #6
0
 public AssignmentCommandHandler(IAssignmentRepository repository, CommandStoreService commandStoreService)
 {
     _repository          = repository;
     _commandStoreService = commandStoreService;
 }
Пример #7
0
 public LeaveParkingPlaceCommandHandler(DbContext dbContext, CommandStoreService commandStoreService)
 {
     _dbContext           = dbContext;
     _commandStoreService = commandStoreService;
 }
Пример #8
0
 public PeopleCommandHandler(DbContext context, CommandStoreService commandStore)
 {
     _dbContext           = context;
     _commandStoreService = commandStore;
 }