public GiftSampleDataSeeder(
     IGuidGenerator guidGenerator,
     IGiftRepository giftRepository)
 {
     _guidGenerator  = guidGenerator;
     _giftRepository = giftRepository;
 }
 public ReplyToCommentNotificationHandler(IWishRepository wishRepository, IGiftRepository giftRepository, IProfileRepository profileRepository, ICommentRepository commentRepository)
 {
     _wishRepository    = wishRepository;
     _giftRepository    = giftRepository;
     _profileRepository = profileRepository;
     _commentRepository = commentRepository;
 }
Example #3
0
 public RegistryManager(IGiftRepository giftRepository, ILoggingService loggingService, ICurrentUser currentUser, IUserRepository userRepository, IMailService mailService)
 {
     _giftRepository = giftRepository;
     _loggingService = loggingService;
     _currentUser    = currentUser;
     _userRepository = userRepository;
     _mailService    = mailService;
 }
Example #4
0
 public RegistryManager(IGiftRepository giftRepository, ILoggingService loggingService,ICurrentUser currentUser, IUserRepository userRepository, IMailService mailService)
 {
     _giftRepository = giftRepository;
     _loggingService = loggingService;
     _currentUser = currentUser;
     _userRepository = userRepository;
     _mailService = mailService;
 }
Example #5
0
 public GiftCardConsumedEventHandler(
     IGuidGenerator guidGenerator,
     IGiftRepository giftRepository,
     IUserGiftRepository userGiftRepository)
 {
     _guidGenerator      = guidGenerator;
     _giftRepository     = giftRepository;
     _userGiftRepository = userGiftRepository;
 }
Example #6
0
 public FeedbackController(IFeedbackRepository feedback, IThanksRepository thanksRepository, IGiftRepository giftRepository, IImageRepository imageRepository, IEquipmentRepository equipment, IEquipmentGroup equipmentGroup, IQuestionRepository questionRepository, IScheduler factory)
 {
     this.feedback         = feedback;
     this.thanksRepository = thanksRepository;
     this.giftRepository   = giftRepository;
     this.imageRepository  = imageRepository;
     this.equipmentGroup   = equipmentGroup;
     this.equipment        = equipment;
     this.question         = questionRepository;
     _scheduler            = factory;
 }
Example #7
0
 public MainController(
     IGiftRepository giftRepository,
     ICartRepository cartRepository,
     ICartItemRepository cartItemRepository,
     UserManager <IdentityUser> userManager
     )
 {
     _giftRepository     = giftRepository;
     _cartRepository     = cartRepository;
     _cartItemRepository = cartItemRepository;
     _userManager        = userManager;
 }
Example #8
0
 public HomeController(
     ILogger <HomeController> logger,
     IGiftRepository giftRepository,
     ICartRepository cartRepository,
     ICartItemRepository cartItemRepository,
     IOrderRepository orderRepository,
     UserManager <IdentityUser> userManager)
 {
     _logger             = logger;
     _giftRepository     = giftRepository;
     _cartRepository     = cartRepository;
     _cartItemRepository = cartItemRepository;
     _orderRepository    = orderRepository;
     _userManager        = userManager;
 }
Example #9
0
 public AdminController(RoleManager <IdentityRole> roleManager,
                        UserManager <IdentityUser> userManager,
                        ICategoryRepository categoryRepository,
                        IGiftRepository giftRepository,
                        IOrderRepository orderRepository,
                        ICartRepository cartRepository,
                        ICartItemRepository cartItemRepository,
                        IEmailSender emailSender,
                        IHostingEnvironment appEnvironment)
 {
     _roleManager        = roleManager;
     _userManager        = userManager;
     _categoryRepository = categoryRepository;
     _giftRepository     = giftRepository;
     _appEnvironment     = appEnvironment;
     _orderRepository    = orderRepository;
     _cartRepository     = cartRepository;
     _cartItemRepository = cartItemRepository;
     _emailSender        = emailSender;
 }
 public AddCommentNotificationHandler(IWishRepository wishRepository, IGiftRepository giftRepository, IProfileRepository profileRepository)
 {
     _wishRepository    = wishRepository;
     _giftRepository    = giftRepository;
     _profileRepository = profileRepository;
 }
Example #11
0
 public JoinNotificationHandler(IGiftRepository giftRepository, IWishRepository wishRepository, IProfileRepository profileRepository)
 {
     _giftRepository    = giftRepository;
     _wishRepository    = wishRepository;
     _profileRepository = profileRepository;
 }
Example #12
0
 public GiftsController(IGiftRepository giftRepository)
 {
     _giftRepository = giftRepository;
 }
Example #13
0
 public HomeController(IGiftRepository giftRepository)
 {
     _iGiftRepository = giftRepository;
 }
Example #14
0
 public CloseItemNotificationHandler(IWishRepository wishRepository, IGiftRepository giftRepository, IProfileRepository profileRepository)
 {
     _wishRepository    = wishRepository;
     _giftRepository    = giftRepository;
     _profileRepository = profileRepository;
 }
 public GiftController(IGiftRepository repo, IMapper mapper)
 {
     _repo   = repo;
     _mapper = mapper;
 }
Example #16
0
 public InterestingController(IProfileRepository repository, IWishRepository wishRepository, IGiftRepository giftRepository)
 {
     _repository     = repository;
     _wishRepository = wishRepository;
     _giftRepository = giftRepository;
 }
Example #17
0
 public GirlGiftsController(GiftShopDbContext context, IGiftRepository giftRepository)
 {
     _context         = context;
     _iGiftRepository = giftRepository;
 }
Example #18
0
 public GiftAppService(IGiftRepository repository) : base(repository)
 {
     _repository = repository;
 }
 public GiftVoucherService(IGiftRepository repository)
 {
     this.repository = repository;
 }
Example #20
0
 public GiftController(IConfiguration config, IGiftRepository gift)
 {
     _config = config;
     _gift   = gift;
 }
Example #21
0
 public GiftService(IGiftRepository userDal)
 {
     _giftDal = userDal;
 }
 public AddGiftHandler(IEventPublisher eventPublisher,
                       IGiftRepository giftRepository)
 {
     this.eventPublisher = eventPublisher;
     this.giftRepository = giftRepository;
 }
Example #23
0
 public GiftController(IGiftRepository giftRepository)
 {
     _giftRepository = giftRepository;
 }
 public GiftController(IGiftRepository giftRepository, INotificationService notificationService, IFileService fileService)
 {
     _giftRepository      = giftRepository;
     _notificationService = notificationService;
     _fileService         = fileService;
 }
 public GiftsController(IGiftRepository giftRepository, IDistributedCache distributedCache)
 {
     _giftRepository   = giftRepository;
     _distributedCache = distributedCache;
 }