Beispiel #1
0
 public ResearchTeam()
 {
     theme       = "Blank";
     nameOfOrg   = "BlaBla";
     numberOfOrg = 0;
     last        = Person.TimeFrame.Long;
 }
Beispiel #2
0
        //Конструкторы

        public ResearchTeam(string theme, string nameOfOrg, int numberOfOrg, Person.TimeFrame last)
        {
            this.theme       = theme;
            this.nameOfOrg   = nameOfOrg;
            this.numberOfOrg = numberOfOrg;
            this.last        = last;
        }
Beispiel #3
0
 //
 public bool this[Person.TimeFrame Indexator]
 {
     get
     {
         if (this.last == Indexator)
         {
             return(true);
         }
         else
         {
             return(false);
         }
     }
 }