Skip to content

Commit

Permalink
fixed inconsistent accessibility
Browse files Browse the repository at this point in the history
  • Loading branch information
danpker committed Dec 15, 2010
1 parent 83c01ab commit eb929ab
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions RefuLib/Person.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@ namespace RefuLib
public class Person
{
//Saved in same order as table in functional spec
private enum Gender { MALE, FEMALE };
private enum HairLength { BALD, VERY_SHORT, SHORT, MEDIUM, LONG, VERY_LONG };
private enum LifeStatus { ALIVE, DECEASED, UNKNOWN };
private enum MaritalStatus { MARRIED, SINGLE };
private enum SkinColour { CAUCASIAN, ASIAN, BLACK}; //TODO alter, not pc
public enum Gender { MALE, FEMALE };
public enum HairLength { BALD, VERY_SHORT, SHORT, MEDIUM, LONG, VERY_LONG };
public enum LifeStatus { ALIVE, DECEASED, UNKNOWN };
public enum MaritalStatus { MARRIED, SINGLE };
public enum SkinColour { CAUCASIAN, ASIAN, BLACK }; //TODO alter, not pc

public String firstName { get; set; }
public String lastName { get; set; }
Expand All @@ -36,7 +36,7 @@ private enum SkinColour { CAUCASIAN, ASIAN, BLACK}; //TODO alter, not pc
public DateTime timeOfCapture { get; set; }
public DateTime timeOfLastHit { get; set; }

private class Age
public class Age
{
//If age in years provided year is calculated, other fields null
private int day { get; set; }
Expand Down

0 comments on commit eb929ab

Please sign in to comment.