コード例 #1
0
 public WhiskyLoader(WhiskyRepository whiskyRepository, DistilleryRepository distilleryRepository)
 {
     this.whiskyRepository = whiskyRepository;
     this.distilleryRepository = distilleryRepository;
 }
コード例 #2
0
 public WhiskyService(DistilleryRepository distilleryRepository, WhiskyRepository whiskyRepository)
 {
     this.distilleryRepository = distilleryRepository;
     this.whiskyRepository = whiskyRepository;
 }
コード例 #3
0
 public DistilleryLoader(DistilleryRepository distilleryRepository)
 {
     this.distilleryRepository = distilleryRepository;
 }