private static GoalController _instance = null; //Singleton pattern public static GoalController Instance() //Lazy Load initiation { if (_instance == null) { _instance = new GoalController(); } return(_instance); }
public decimal GetGoalAmount(String username, String password) { List <GoalDB> returningValue = (List <GoalDB>)GoalController.Instance().ParseOneUserGoal(username, password); if (returningValue.Count > 0) { return(returningValue[0].goalAmount); } else { return(0m); } }
public int TimeLeftUntilGoal(String username, String password) { return(GoalController.Instance().GetMonthCountUntilGoalIsReachedOneUser(username, password)); }
public int TimeLeftUntilGoal() { return(GoalController.Instance().GetMonthCountUntilGoalIsReached()); }
public decimal GetGoalAmount() { List <GoalDB> returningValue = (List <GoalDB>)GoalController.Instance().ParseGoal(); return(returningValue[0].goalAmount); }