public CheckInControllerScratch(IRepository repository, IUserContext userContext, IClock clock, IAchievementUnlocker achievementUnlocker, ISomeOtherService someOtherService)
 {
     this.repository          = repository;
     this.userContext         = userContext;
     this.clock               = clock;
     this.achievementUnlocker = achievementUnlocker;
     this.someOtherService    = someOtherService;
 }
Ejemplo n.º 2
0
 public static MyClass Create(ISomeService serviceA, ISomeOtherService serviceB)
 {
     return(new MyClass(serviceA, serviceB));
 }
 public OfferService(IUserServiceFactory userServiceFactory, ISomeOtherService someotherService)
 {
     _userServiceFactory = userServiceFactory;
     _someotherService   = someotherService;
 }
Ejemplo n.º 4
0
 public SomeService(ISomeOtherService otherService)
 {
     this.otherService = otherService;
 }
Ejemplo n.º 5
0
 public SomeComponent([Qualifier("Bean2")] ISomeService someService, ISomeOtherService someOtherService)
 {
     this.someService      = someService;
     this.someOtherService = someOtherService;
 }
 public UserService(ISomeOtherService someotherService)