예제 #1
0
 public SprintFactory(IProjectSearcher projectSearcher, IMembershipService authorizationService, CallContext callContext)
 {
     this.projectSearcher      = projectSearcher;
     this.authorizationService = authorizationService;
     this.callContext          = callContext;
 }
 public MembershipService(UserRepository userRepository, IProjectSearcher projectSearcher)
 {
     this.userRepository  = userRepository;
     this.projectSearcher = projectSearcher;
 }
 public ProjectQueryHandler(IProjectSearcher projectSearcher, CallContext callContext)
 {
     this.projectSearcher = projectSearcher;
     this.callContext     = callContext;
 }