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