public void GivenMyRaceIsThe(Race race)
 {
     this.race = race;
 }
        public ProductionRun(Technology technology, Race race)
        {
            this.race = race;

            this.Cost = -(technology == Technologies.SarweenTools ? 1 : 0);
        }