Esempio n. 1
0
 public PostService(IDatabase database, IReadOnlyProfileService profileService, IFilesManager filesManager, IHttpContextReader httpContextReader)
 {
     this.database          = database;
     this.profileService    = profileService;
     this.filesManager      = filesManager;
     this.httpContextReader = httpContextReader;
 }
Esempio n. 2
0
 public ReportBaseManager(IDatabase database, IFilesManager filesManager, IReadOnlyProfileService profileService, IReadOnlyRolesService rolesService)
 {
     this.database       = database;
     this.filesManager   = filesManager;
     this.profileService = profileService;
     this.rolesService   = rolesService;
 }
Esempio n. 3
0
 public AdminService(IDatabase database, IReadOnlyProfileService profileService, IRolesService rolesService, IUserService userService)
 {
     this.database       = database;
     this.profileService = profileService;
     this.rolesService   = rolesService;
     this.userService    = userService;
 }
Esempio n. 4
0
 public GroupManager(IDatabase database, IReadOnlyProfileService profileService, IFilesManager filesManager,
                     IMapper mapper, INotifier notifier)
 {
     this.database       = database;
     this.profileService = profileService;
     this.filesManager   = filesManager;
     this.mapper         = mapper;
     this.notifier       = notifier;
 }
Esempio n. 5
0
 public OfferService(IDatabase database, IReadOnlyProfileService profileService, IFilesManager filesManager,
                     IOfferValidationService offerValidationService, IEnumerable <IFilter <Offer> > offerFilters)
 {
     this.database               = database;
     this.profileService         = profileService;
     this.filesManager           = filesManager;
     this.offerValidationService = offerValidationService;
     this.offerFilters           = offerFilters;
 }
Esempio n. 6
0
 public FavoritesService(IDatabase database, IReadOnlyProfileService profileService)
 {
     this.database       = database;
     this.profileService = profileService;
 }
Esempio n. 7
0
 public CommentService(IDatabase database, IReadOnlyProfileService profileService, IFilesManager filesManager)
 {
     this.database       = database;
     this.profileService = profileService;
 }
Esempio n. 8
0
 public ReplyManager(IDatabase database, IFilesManager filesManager, IReadOnlyProfileService profileService,
                     IEmailSender emailSender)
     : base(database, filesManager, profileService)
 {
     this.emailSender = emailSender;
 }
Esempio n. 9
0
 public RefreshUserDataQuery(IReadOnlyProfileService profileService, IJwtAuthorizationTokenGenerator jwtAuthorizationTokenGenerator, IMapper mapper)
 {
     this.profileService = profileService;
     this.jwtAuthorizationTokenGenerator = jwtAuthorizationTokenGenerator;
     this.mapper = mapper;
 }
Esempio n. 10
0
 public OpinionService(IDatabase database, IOpinionValidationService opinionValidationService, IReadOnlyProfileService profileService)
 {
     this.database = database;
     this.opinionValidationService = opinionValidationService;
     this.profileService           = profileService;
 }
Esempio n. 11
0
 public BookingService(IDatabase database, IBookingValidationService bookingValidationService, IReadOnlyProfileService profileService)
 {
     this.database = database;
     this.bookingValidationService = bookingValidationService;
     this.profileService           = profileService;
 }
Esempio n. 12
0
 public UserService(IDatabase database, IReadOnlyProfileService profileService)
 {
     this.database       = database;
     this.profileService = profileService;
 }
Esempio n. 13
0
 public ReportAnonymousManager(IDatabase database, IFilesManager filesManager, IReadOnlyProfileService profileService)
     : base(database, filesManager, profileService)
 {
 }
Esempio n. 14
0
 protected ReportBaseManager(IDatabase database, IFilesManager filesManager, IReadOnlyProfileService profileService)
 {
     this.database       = database;
     this.filesManager   = filesManager;
     this.profileService = profileService;
 }
Esempio n. 15
0
 public FriendService(IDatabase database, IReadOnlyProfileService profileService, IHttpContextReader httpContextReader)
 {
     this.database          = database;
     this.profileService    = profileService;
     this.httpContextReader = httpContextReader;
 }
Esempio n. 16
0
 public GroupService(IDatabase database, IFilesManager filesManager, IReadOnlyProfileService profileService)
 {
     this.database       = database;
     this.filesManager   = filesManager;
     this.profileService = profileService;
 }
Esempio n. 17
0
 public GetProfileQuery(IReadOnlyProfileService profileServie, IMapper mapper)
 {
     this.profileServie = profileServie;
     this.mapper        = mapper;
 }