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