Beispiel #1
0
 public FetchStoriesQuery(IReadOnlyStoryManager storyManager, IMapper mapper,
                          IHttpContextReader httpContextReader)
 {
     this.storyManager      = storyManager;
     this.mapper            = mapper;
     this.httpContextReader = httpContextReader;
 }
 public CharacterManager(IDatabase database, IRolesService rolesService,
                         IHttpContextReader httpContextReader)
 {
     this.database          = database;
     this.rolesService      = rolesService;
     this.httpContextReader = httpContextReader;
 }
Beispiel #3
0
 public ReportService(IDatabase database, IReportImageService reportImageService,
                      IHttpContextReader httpContextReader)
 {
     this.database           = database;
     this.reportImageService = reportImageService;
     this.httpContextReader  = httpContextReader;
 }
 public RestoreDefaultSkinCommand(IMtaManager mtaManager, IReadOnlyUserService userService,
                                  IHttpContextReader httpContextReader)
 {
     this.mtaManager        = mtaManager;
     this.userService       = userService;
     this.httpContextReader = httpContextReader;
 }
Beispiel #5
0
 public FetchUserGroupsQuery(IReadOnlyGroupService groupService, IMapper mapper,
                             IHttpContextReader httpContextReader)
 {
     this.groupService      = groupService;
     this.mapper            = mapper;
     this.httpContextReader = httpContextReader;
 }
Beispiel #6
0
 public OfferAuctionManager(IUnitOfWork unitOfWork, IHttpContextReader httpContextReader,
                            IOfferAuctionValidationService offerAuctionValidationService)
 {
     this.unitOfWork                    = unitOfWork;
     this.httpContextReader             = httpContextReader;
     this.offerAuctionValidationService = offerAuctionValidationService;
 }
Beispiel #7
0
 public DeleteFriendCommand(IFriendService friendService, IHubManager hubManager,
                            IHttpContextReader httpContextReader)
 {
     this.friendService     = friendService;
     this.hubManager        = hubManager;
     this.httpContextReader = httpContextReader;
 }
 public ReportValidationHub(IReportValidationService reportValidationService,
                            IReadOnlyReportService reportService, IHttpContextReader httpContextReader)
 {
     this.reportValidationService = reportValidationService;
     this.reportService           = reportService;
     this.httpContextReader       = httpContextReader;
 }
Beispiel #9
0
 public Notifier(IDatabase database, INotifierValidationService notifierValidationService,
                 IHttpContextReader httpContextReader)
 {
     this.database = database;
     this.notifierValidationService = notifierValidationService;
     this.httpContextReader         = httpContextReader;
 }
Beispiel #10
0
 public AttachReportImagesCommand(IReportImageService reportImageService,
                                  IReportValidationHub reportValidationHub, IHttpContextReader httpContextReader)
 {
     this.reportImageService  = reportImageService;
     this.reportValidationHub = reportValidationHub;
     this.httpContextReader   = httpContextReader;
 }
Beispiel #11
0
 public PostService(IDatabase database, IReadOnlyProfileService profileService, IFilesManager filesManager, IHttpContextReader httpContextReader)
 {
     this.database          = database;
     this.profileService    = profileService;
     this.filesManager      = filesManager;
     this.httpContextReader = httpContextReader;
 }
Beispiel #12
0
 public OpinionService(IUnitOfWork unitOfWork, IReadOnlyAccountManager accountManager,
                       IHttpContextReader httpContextReader)
 {
     this.unitOfWork        = unitOfWork;
     this.accountManager    = accountManager;
     this.httpContextReader = httpContextReader;
 }
Beispiel #13
0
 public GetUserQuery(IUserService userService, IMapper mapper, IHttpContextReader httpContextReader,
                     IReadOnlyRolesService rolesService)
 {
     this.userService       = userService;
     this.mapper            = mapper;
     this.httpContextReader = httpContextReader;
     this.rolesService      = rolesService;
 }
Beispiel #14
0
 public SendReplyCommand(IReplyManager replyManager, IMapper mapper, INotifier notifier,
                         IHttpContextReader httpContextReader)
 {
     this.replyManager      = replyManager;
     this.mapper            = mapper;
     this.notifier          = notifier;
     this.httpContextReader = httpContextReader;
 }
 public CustomInteriorManager(IXmlReader xmlReader, IFilesManager filesManager,
                              IDatabase database, IHttpContextReader httpContextReader)
 {
     this.xmlReader         = xmlReader;
     this.filesManager      = filesManager;
     this.database          = database;
     this.httpContextReader = httpContextReader;
 }
 public AccountManager(IDatabase database, IHashGenerator hashGenerator, IReadOnlyUserService userService,
                       IHttpContextReader httpContextReader)
 {
     this.database          = database;
     this.hashGenerator     = hashGenerator;
     this.userService       = userService;
     this.httpContextReader = httpContextReader;
 }
Beispiel #17
0
 public RestoreDefaultInteriorCommand(IMtaManager mtaManager, IReadOnlyUserService userService,
                                      IReadOnlyCharacterService characterService, IHttpContextReader httpContextReader)
 {
     this.mtaManager        = mtaManager;
     this.userService       = userService;
     this.characterService  = characterService;
     this.httpContextReader = httpContextReader;
 }
Beispiel #18
0
 public ProfileService(IDatabase database, IFilesManager filesManager, IHttpContextReader httpContextReader,
                       IHashGenerator hashGenerator)
 {
     this.database          = database;
     this.filesManager      = filesManager;
     this.httpContextReader = httpContextReader;
     this.hashGenerator     = hashGenerator;
 }
 public TransferCharacterCommand(IPremiumAccountManager premiumAccountManager,
                                 IPremiumCreditsDatabaseRestorePoint premiumCreditsDatabaseRestorePoint,
                                 IHttpContextReader httpContextReader)
 {
     this.premiumAccountManager = premiumAccountManager;
     this.premiumCreditsDatabaseRestorePoint = premiumCreditsDatabaseRestorePoint;
     this.httpContextReader = httpContextReader;
 }
Beispiel #20
0
 public CreateCommentCommand(ICommentService commentService, IMapper mapper, INotifier notifier,
                             IHttpContextReader httpContextReader)
 {
     this.commentService    = commentService;
     this.mapper            = mapper;
     this.notifier          = notifier;
     this.httpContextReader = httpContextReader;
 }
Beispiel #21
0
 public Notifier(IDatabase database, IHttpContextReader httpContextReader, IHubManager hubManager,
                 IMapper mapper)
 {
     this.database          = database;
     this.httpContextReader = httpContextReader;
     this.hubManager        = hubManager;
     this.mapper            = mapper;
 }
Beispiel #22
0
 public AddCustomInteriorCommand(IPremiumAccountManager premiumAccountManager,
                                 IPremiumCreditsDatabaseRestorePoint premiumCreditsDatabaseRestorePoint,
                                 IHttpContextReader httpContextReader)
 {
     this.premiumAccountManager = premiumAccountManager;
     this.premiumCreditsDatabaseRestorePoint = premiumCreditsDatabaseRestorePoint;
     this.httpContextReader = httpContextReader;
 }
Beispiel #23
0
 public OfferService(IUnitOfWork unitOfWork, IReadOnlyAccountManager accountManager, IFilesManager filesManager,
                     IHttpContextReader httpContextReader)
 {
     this.unitOfWork        = unitOfWork;
     this.accountManager    = accountManager;
     this.filesManager      = filesManager;
     this.httpContextReader = httpContextReader;
 }
 public AddObjectProtectionCommand(IPremiumAccountManager premiumAccountManager,
                                   IPremiumCreditsDatabaseRestorePoint premiumCreditsDatabaseRestorePoint,
                                   IHttpContextReader httpContextReader)
 {
     this.premiumAccountManager = premiumAccountManager;
     this.premiumCreditsDatabaseRestorePoint = premiumCreditsDatabaseRestorePoint;
     this.httpContextReader = httpContextReader;
 }
Beispiel #25
0
 public CreatePostCommand(IPostService postService, IMapper mapper, INotifier notifier,
                          IHttpContextReader httpContextReader)
 {
     this.postService       = postService;
     this.mapper            = mapper;
     this.notifier          = notifier;
     this.httpContextReader = httpContextReader;
 }
 public LogReaderHelper(IDatabase database, IHttpContextReader httpContextReader,
                        LogActionPermissionDictionary logActionPermissionDictionary, IConfiguration configuration)
 {
     this.database                      = database;
     this.httpContextReader             = httpContextReader;
     this.logActionPermissionDictionary = logActionPermissionDictionary;
     Configuration                      = configuration;
 }
Beispiel #27
0
 public UserManager(IDatabase database, IBanService banService, IReadOnlySerialService serialService,
                    IRolesService rolesService, IHttpContextReader httpContextReader)
 {
     this.database          = database;
     this.banService        = banService;
     this.serialService     = serialService;
     this.rolesService      = rolesService;
     this.httpContextReader = httpContextReader;
 }
Beispiel #28
0
 public SetOrderApprovalStateCommand(IOrderService orderService, IHttpContextReader httpContextReader,
                                     INotifier notifier, IHubManager <NotifierHub> hubManager, IMapper mapper)
 {
     this.orderService      = orderService;
     this.httpContextReader = httpContextReader;
     this.notifier          = notifier;
     this.hubManager        = hubManager;
     this.mapper            = mapper;
 }
Beispiel #29
0
 public AddCreditsCommand(IUserManager userManager, INotifier notifier, IHubManager <NotifierHub> hubManager,
                          IHttpContextReader httpContextReader, IMapper mapper)
 {
     this.userManager       = userManager;
     this.notifier          = notifier;
     this.hubManager        = hubManager;
     this.httpContextReader = httpContextReader;
     this.mapper            = mapper;
 }
Beispiel #30
0
 public ReceiveFriendCommand(IFriendService friendService, IMapper mapper, IHubManager hubManager,
                             INotifier notifier, IHttpContextReader httpContextReader)
 {
     this.friendService     = friendService;
     this.mapper            = mapper;
     this.hubManager        = hubManager;
     this.notifier          = notifier;
     this.httpContextReader = httpContextReader;
 }