Exemplo n.º 1
0
 public Haircut(Zodiac zodiac, string moonDay, string moonPhase, string prediction, bool isPositive)
 {
     Zodiac     = zodiac;
     MoonDay    = moonDay;
     MoonPhase  = moonPhase;
     Prediction = prediction;
     IsPositive = isPositive;
 }
 public Compatibility(int id, Zodiac zodiac1, Zodiac zodiac2, int compatibilityValue, string textValue)
 {
     Id                 = id;
     Zodiac1            = zodiac1;
     Zodiac2            = zodiac2;
     CompatibilityValue = compatibilityValue;
     TextValue          = textValue;
 }
Exemplo n.º 3
0
 private bool Equals(Zodiac other)
 {
     return(Name == other.Name && Type == other.Type);
 }
Exemplo n.º 4
0
 public Prediction(Zodiac zodiac, TimeInterval timeInterval, string text)
 {
     Zodiac       = zodiac;
     TimeInterval = timeInterval;
     Text         = text;
 }