Beispiel #1
0
        public AstroPlanet(EnumPlanet palnet, double[] planetLocations, AstroPlace place) : base(palnet, 9, AstroConsts.InvalidIntInput, place)
        {
            InitPlant(planetLocations);
            PlanetHandler handler = new PlanetHandler();
            int           id      = GetDbId();
            var           rData   = handler.Include(x => x.MovemenType)
                                    .Include(x => x.ButhaType).Include(x => x.FocusPlanetPlanetRelations)
                                    .Include(x => x.PlanetaryGenderType).Include(x => x.RelatedPlanetPlanetRelations)
                                    .GetFirstGeneric(x => x.PlanetId == id);

            if (rData.Successful)
            {
                this.DataModel = rData.Result;
            }
        }
Beispiel #2
0
 public AstroPlanet(int palnetInt, double[] planetLocations, AstroPlace place) : this((EnumPlanet)palnetInt, planetLocations, place)
 {
 }
Beispiel #3
0
 public AstroTransitDate(AstroPlace locationData, bool IsWithDetails) : base(locationData, IsWithDetails)
 {
 }