Beispiel #1
0
 public OpenModule(IChestService chestService,
                   ICapsuleService capsuleService,
                   ISphereService sphereService)
 {
     this.chestService = chestService;
     this.capsuleService = capsuleService;
     this.sphereService = sphereService;
 }
Beispiel #2
0
 public SphereController(ILoginService programmers, ISphereService spheres, ICategoryService categories)
 {
     this.programmers = programmers;
     this.spheres     = spheres;
     this.categories  = categories;
 }
 public SphereController(ISphereService sphereService)
 {
     Contract.Assert(sphereService != null);
     this.sphereService = sphereService;
 }
Beispiel #4
0
 public ManagerController(ILoginService logins, ISphereService sphereService)
 {
     this.logins        = logins;
     this.sphereService = sphereService;
 }