public WhiskyService(DistilleryRepository distilleryRepository, WhiskyRepository whiskyRepository)
 {
     this.distilleryRepository = distilleryRepository;
     this.whiskyRepository = whiskyRepository;
 }
 public WhiskyLoader(WhiskyRepository whiskyRepository, DistilleryRepository distilleryRepository)
 {
     this.whiskyRepository = whiskyRepository;
     this.distilleryRepository = distilleryRepository;
 }