forked from ucsbfinaid/Financial-Aid-Estimator-.NET
-
Notifications
You must be signed in to change notification settings - Fork 0
/
AidEstimationValidator.Constants.Simple.cs
39 lines (32 loc) · 1.91 KB
/
AidEstimationValidator.Constants.Simple.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
namespace Ucsb.Sa.FinAid.AidEstimation.Utility
{
public partial class AidEstimationValidator
{
// Income
public static string LabelParentIncome = @"""Parent(s)' Income""";
public static string LabelStudentIncome = @"""Student's Income""";
public static string LabelIndStudentIncome = @"""Student and Spouse's Total Income""";
public static string ParamParentIncome = "parentIncome";
public static string ParamStudentIncome = "studentIncome";
public static string ParamIndStudentIncome = "studentIncome";
// Income Earned By
public static string LabelParentIncomeEarnedBy = @"""Parent(s)' Income Earned By""";
public static string LabelIndStudentIncomeEarnedBy = @"""Student's Income Earned By""";
public static string ParamParentIncomeEarnedBy = "parentIncomeEarnedBy";
public static string ParamIndStudentIncomeEarnedBy = "studentIncomeEarnedBy";
// Other Income
public static string LabelParentOtherIncome = @"""Parent(s)' Other Income""";
public static string LabelStudentOtherIncome = @"""Student's Other Income""";
public static string LabelIndStudentOtherIncome = @"""Student and Spouse's Other Income""";
public static string ParamParentOtherIncome = "parentOtherIncome";
public static string ParamStudentOtherIncome = "studentOtherIncome";
public static string ParamIndStudentOtherIncome = "studentOtherIncome";
// Assets
public static string LabelParentAssets = @"""Parent(s)' Assets""";
public static string LabelStudentAssets = @"""Student's Assets""";
public static string LabelIndStudentAssets = @"""Student and Spouse's Assets""";
public static string ParamParentAssets = "parentAssets";
public static string ParamStudentAssets = "studentAssets";
public static string ParamIndStudentAssets = "studentAssets";
}
}