コード例 #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
ファイル: NavVC.cs プロジェクト: aragorn55/ClassSampleCode
		public NavViewController ()
		{
			oUser = new cPerson ();
			PhysicalViewController = new cPhysicalVC (oUser);
			PushViewController (PhysicalViewController, true);
		}