public bool CreateGoal(Goal goal)
        {
            Goal goal2 = new Goal();

            goal2.Name                = goal.Name;
            goal2.GoalsSavings        = goal.GoalsSavings;
            goal2.GoalSavingsPerMonth = goal.GoalSavingsPerMonth;
            goal2.MonthGoals          = goal.MonthGoals;
            goal2.LoanTermInYears     = goal.LoanTermInYears;
            goal2.InterestRate        = goal.InterestRate;
            goal2.EstimatedLowLoan    = goal.EstimatedLowLoan;
            goal2.EstimatedHighLoan   = goal.EstimatedHighLoan;
            goal2.EstimatedHighTotal  = goal.EstimatedHighTotal;
            goal2.EstimatedLowTotal   = goal.EstimatedLowTotal;
            goal2.BudgetId            = null;
            goal2.Id = 0;
            return(_oa.InsertGoal(goal));
        }