public AccountController(
     IAccountQueryService accountQueryService,
     IConfiguration configuration)
 {
     _accountQueryService = accountQueryService;
     _configuration       = configuration;
 }
 public AccountsController(IMapper mapper,
                           IAccountQueryService accountQueryService, IAccountCommandService accountCommandService)
 {
     _mapper = mapper;
     _accountQueryService   = accountQueryService;
     _accountCommandService = accountCommandService;
 }
Exemple #3
0
 public AccountController(IAuthenticationService authenticationService
                          , ICommandService commandService
                          , IAccountQueryService queryService)
 {
     _authenticationService = authenticationService;
     _commandService        = commandService;
     _queryService          = queryService;
 }
Exemple #4
0
 public OrderUseCaseService(IOrderRepository repository, IAccountQueryService accountQueryService, IEventBus eventBus, IStateManager stateManager, IUnitofWork unitofWork, IGoodsQueryService goodsQueryService, IGoodsActorService goodsActorService)
 {
     this.repository          = repository;
     this.unitofWork          = unitofWork;
     this.eventBus            = eventBus;
     this.stateManager        = stateManager;
     this.goodsQueryService   = goodsQueryService;
     this.goodsActorService   = goodsActorService;
     this.accountQueryService = accountQueryService;
 }
Exemple #5
0
 public ReservationController(
     IReservationAppService reservationAppService,
     IReservationQueryService reservationQueryService,
     IAccountQueryService accountQueryService,
     IEquipmentQueryService equipmentQueryService)
 {
     _reservationAppService   = reservationAppService;
     _reservationQueryService = reservationQueryService;
     _accountQueryService     = accountQueryService;
     _equipmentQueryService   = equipmentQueryService;
 }
Exemple #6
0
 /// <summary>
 /// コンストラクタ。
 /// </summary>
 /// <param name="accountRepository"><see cref="IAccountRepository"/></param>
 /// <param name="accountQueryService"><see cref="IAccountQueryService"/></param>
 /// <param name="personRepository"><see cref="IPersonRepository"/></param>
 /// <param name="personQueryService"><see cref="IPersonQueryService"/></param>
 public AccountService(
     IAccountRepository accountRepository,
     IAccountQueryService accountQueryService,
     IPersonRepository personRepository,
     IPersonQueryService personQueryService)
 {
     _accountRepository   = accountRepository;
     _accountQueryService = accountQueryService;
     _personRepository    = personRepository;
     _personQueryService  = personQueryService;
 }
 public UserService(
     IUserRepository userRepository,
     IMapper mapper,
     IAccountRepository accountRepository,
     IDbContextScopeFactory contextScopeFactory,
     IUserTypeQueryService userTypeQueryService,
     IAccountQueryService accountQueryService,
     IPlayerInfoRepository playerInfoRepository,
     IMapper mapper1)
     : base(mapper, contextScopeFactory)
 {
     _userRepository       = userRepository;
     _accountRepository    = accountRepository;
     _userTypeQueryService = userTypeQueryService;
     _accountQueryService  = accountQueryService;
     _playerInfoRepository = playerInfoRepository;
     _mapper = mapper1;
 }
Exemple #8
0
 public AccountApplicationService(ICommandBus commandBus, IAccountQueryService accountQueryService)
 {
     _commandBus          = commandBus;
     _accountQueryService = accountQueryService;
 }
Exemple #9
0
 public AccountService(IAccountQueryService accountQueryService)
 {
     _accountQueryService = accountQueryService;
 }
 public OrderQueryService(EfDbContext dbContext, IStateManager stateManager, IAccountQueryService accountQuery)
 {
     this.dbContext    = dbContext;
     this.stateManager = stateManager;
     this.accountQuery = accountQuery;
 }
Exemple #11
0
 public AccountsController(IAccountQueryService accountQueryService)
 {
     _accountQueryService = accountQueryService;
 }
 public AccountController(IAccountApplicationService accountApplicationService, IAccountQueryService accountQueryService)
 {
     _accountApplicationService = accountApplicationService;
     _accountQueryService       = accountQueryService;
 }
 public AccountController(IAccountApplication accountApplication, IAccountQueryService accountQueryService, IGetId getId)
 {
     _accountApplication  = accountApplication;
     _accountQueryService = accountQueryService;
     _getId = getId;
 }
Exemple #14
0
 public AccountController(IAuthenticationService authenticationService, ICommandService commandService, IAccountQueryService queryService)
 {
     _authenticationService = authenticationService;
     _commandService = commandService;
     _queryService = queryService;
 }
Exemple #15
0
 public BusinessController(ICommandService commandService, IAccountQueryService accountQueryService,
                           IWebAppQueryService webAppQueryService) : base(commandService)
 {
     _accountQueryService = accountQueryService;
     _webAppQueryService  = webAppQueryService;
 }
Exemple #16
0
 public AccountController(ICommandService commandService, IAccountQueryService queryService)
 {
     _commandService = commandService;
     _queryService   = queryService;
 }
Exemple #17
0
 public AccountController(ICommandService commandService, IAccountQueryService accountQueryService)
     : base(commandService)
 {
     _accountQueryService = accountQueryService;
 }