コード例 #1
0
 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;
 }
コード例 #3
0
 public RegistryManager(IGiftRepository giftRepository, ILoggingService loggingService, ICurrentUser currentUser, IUserRepository userRepository, IMailService mailService)
 {
     _giftRepository = giftRepository;
     _loggingService = loggingService;
     _currentUser    = currentUser;
     _userRepository = userRepository;
     _mailService    = mailService;
 }
コード例 #4
0
ファイル: IRegistryManager.cs プロジェクト: ammeep/giftme
 public RegistryManager(IGiftRepository giftRepository, ILoggingService loggingService,ICurrentUser currentUser, IUserRepository userRepository, IMailService mailService)
 {
     _giftRepository = giftRepository;
     _loggingService = loggingService;
     _currentUser = currentUser;
     _userRepository = userRepository;
     _mailService = mailService;
 }
コード例 #5
0
 public GiftCardConsumedEventHandler(
     IGuidGenerator guidGenerator,
     IGiftRepository giftRepository,
     IUserGiftRepository userGiftRepository)
 {
     _guidGenerator      = guidGenerator;
     _giftRepository     = giftRepository;
     _userGiftRepository = userGiftRepository;
 }
コード例 #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;
 }
コード例 #7
0
ファイル: MainController.cs プロジェクト: koshakan/OnlineShop
 public MainController(
     IGiftRepository giftRepository,
     ICartRepository cartRepository,
     ICartItemRepository cartItemRepository,
     UserManager <IdentityUser> userManager
     )
 {
     _giftRepository     = giftRepository;
     _cartRepository     = cartRepository;
     _cartItemRepository = cartItemRepository;
     _userManager        = userManager;
 }
コード例 #8
0
ファイル: HomeController.cs プロジェクト: koshakan/OnlineShop
 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;
 }
コード例 #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;
 }
コード例 #10
0
 public AddCommentNotificationHandler(IWishRepository wishRepository, IGiftRepository giftRepository, IProfileRepository profileRepository)
 {
     _wishRepository    = wishRepository;
     _giftRepository    = giftRepository;
     _profileRepository = profileRepository;
 }
コード例 #11
0
 public JoinNotificationHandler(IGiftRepository giftRepository, IWishRepository wishRepository, IProfileRepository profileRepository)
 {
     _giftRepository    = giftRepository;
     _wishRepository    = wishRepository;
     _profileRepository = profileRepository;
 }
コード例 #12
0
 public GiftsController(IGiftRepository giftRepository)
 {
     _giftRepository = giftRepository;
 }
コード例 #13
0
 public HomeController(IGiftRepository giftRepository)
 {
     _iGiftRepository = giftRepository;
 }
コード例 #14
0
 public CloseItemNotificationHandler(IWishRepository wishRepository, IGiftRepository giftRepository, IProfileRepository profileRepository)
 {
     _wishRepository    = wishRepository;
     _giftRepository    = giftRepository;
     _profileRepository = profileRepository;
 }
コード例 #15
0
 public GiftController(IGiftRepository repo, IMapper mapper)
 {
     _repo   = repo;
     _mapper = mapper;
 }
コード例 #16
0
 public InterestingController(IProfileRepository repository, IWishRepository wishRepository, IGiftRepository giftRepository)
 {
     _repository     = repository;
     _wishRepository = wishRepository;
     _giftRepository = giftRepository;
 }
コード例 #17
0
 public GirlGiftsController(GiftShopDbContext context, IGiftRepository giftRepository)
 {
     _context         = context;
     _iGiftRepository = giftRepository;
 }
コード例 #18
0
 public GiftAppService(IGiftRepository repository) : base(repository)
 {
     _repository = repository;
 }
コード例 #19
0
 public GiftVoucherService(IGiftRepository repository)
 {
     this.repository = repository;
 }
コード例 #20
0
 public GiftController(IConfiguration config, IGiftRepository gift)
 {
     _config = config;
     _gift   = gift;
 }
コード例 #21
0
ファイル: GiftrService .cs プロジェクト: Garibov2001/BuyGift
 public GiftService(IGiftRepository userDal)
 {
     _giftDal = userDal;
 }
コード例 #22
0
 public AddGiftHandler(IEventPublisher eventPublisher,
                       IGiftRepository giftRepository)
 {
     this.eventPublisher = eventPublisher;
     this.giftRepository = giftRepository;
 }
コード例 #23
0
 public GiftController(IGiftRepository giftRepository)
 {
     _giftRepository = giftRepository;
 }
コード例 #24
0
 public GiftController(IGiftRepository giftRepository, INotificationService notificationService, IFileService fileService)
 {
     _giftRepository      = giftRepository;
     _notificationService = notificationService;
     _fileService         = fileService;
 }
コード例 #25
0
 public GiftsController(IGiftRepository giftRepository, IDistributedCache distributedCache)
 {
     _giftRepository   = giftRepository;
     _distributedCache = distributedCache;
 }