Пример #1
0
		public double FindTimeLeft (cPerson voUser)
		{
			oUser = voUser;
			_YearsLeft = FindBaseYears () + FindBMIYrs () + CigarettePenalty () + Sleep ();
			_YearsLeft = FindYearsLeft (_YearsLeft);
			return _YearsLeft;
		}
Пример #2
0
        public int FindTimeLeft(cPerson voUser)
        {
			oUser = voUser;
            throw new System.NotImplementedException();
        }
Пример #3
0
 public int FindTimeLeft(cPerson voUser)
 {
     throw new System.NotImplementedException();
 }
Пример #4
0
 public int FindAge(cPerson vsUser)
 {
     throw new System.NotImplementedException();
 }
Пример #5
0
		public cPhysicaliPadVC (cPerson oUser) : base ("cPhysicaliPadVC", null)
		{
			_User = oUser;
		}
Пример #6
0
		public cResultsVC (cPerson voUser) : base ("cResultsVC", null)
		{
			_User = voUser;
			oCalc = new cDeathCalculator ();
		
		}
Пример #7
0
 public int FindAge(cPerson vsUser)
 {
     throw new System.NotImplementedException();
 }
Пример #8
0
		public NavViewController ()
		{
			oUser = new cPerson ();
			PhysicalViewController = new cPhysicalVC (oUser);
			PushViewController (PhysicalViewController, true);
		}