Exemplo n.º 1
0
 public AccountController(ISecurityQuestionRepository securityQuestionRepository, IRegisteredUserRepository registeredUserRepository, IUserSizeRepository userSizeRepository, IRegisterMemberService registerMemberService)
 {
     this.securityQuestionRepository = securityQuestionRepository;
     this.registeredUserRepository   = registeredUserRepository;
     this.userSizeRepository         = userSizeRepository;
     this.registerMemberService      = registerMemberService;
 }
Exemplo n.º 2
0
 public RegistrationController(IGarmentRepository garmentRepository, IRegisterMemberService registerMemberService, IUserSizeRepository userSizeRepository, ISecurityQuestionRepository securityQuestionRepository, IRegisteredUserRepository registeredUserRepository)
 {
     this.userSizeRepository         = userSizeRepository;
     this.securityQuestionRepository = securityQuestionRepository;
     this.registerMemberService      = registerMemberService;
     this.garmentRepository          = garmentRepository;
     this.registeredUserRepository   = registeredUserRepository;
 }
Exemplo n.º 3
0
 public BuildYourClosetController(IFashionFlavorRepository repository, IStylePhotographRepository stylePhotographRepository, IBrandSetRepository brandSetRepository, IWordingRepository wordingRepository, IEventTypeRepository eventTypeRepository, ISilouhetteRepository silouhetteRepository, IPatternRepository patternRepository, IGarmentRepository garmentRepository, IRegisteredUserRepository registeredUserRepository, IWishListRepository wishListRepository, IClosetRepository closetRepository, IUserSizeRepository userSizeRepository, IFabricRepository fabricRepository, ISecurityQuestionRepository securityQuestionRepository, IZipCodeRepository zipCodeRepository)
 {
     this.fashionFlavorRepository    = repository;
     this.stylePhotographRepository  = stylePhotographRepository;
     this.brandSetRepository         = brandSetRepository;
     this.wordingRepository          = wordingRepository;
     this.eventTypeRepository        = eventTypeRepository;
     this.silouhetteRepository       = silouhetteRepository;
     this.patternRepository          = patternRepository;
     this.garmentRepository          = garmentRepository;
     this.registeredUserRepository   = registeredUserRepository;
     this.wishListRepository         = wishListRepository;
     this.closetRepository           = closetRepository;
     this.userSizeRepository         = userSizeRepository;
     this.fabricRepository           = fabricRepository;
     this.securityQuestionRepository = securityQuestionRepository;
     this.zipCodeRepository          = zipCodeRepository;
 }
Exemplo n.º 4
0
 public RegisterMemberService(IBasicUserRepository basicUserRepository, IWishListRepository wishListRepository, IClosetRepository closetRepository, IUserSizeRepository userSizeRepository, ISecurityQuestionRepository securityQuestionRepository, IMessageSenderService messageSenderService, IInvitationCodeRepository invitationCodeRepository,
                              IFriendRepository friendRepository, IInvitationValidatorService invitationValidatorService, IRegisteredUserRepository registeredUserRepository)
 {
     this.basicUserRepository        = basicUserRepository;
     this.wishListRepository         = wishListRepository;
     this.closetRepository           = closetRepository;
     this.messageSenderService       = messageSenderService;
     this.invitationCodeRepository   = invitationCodeRepository;
     this.friendRepository           = friendRepository;
     this.invitationValidatorService = invitationValidatorService;
     this.registeredUserRepository   = registeredUserRepository;
 }