Пример #1
0
        private static GoalController _instance = null; //Singleton pattern

        public static GoalController Instance()         //Lazy Load initiation
        {
            if (_instance == null)
            {
                _instance = new GoalController();
            }
            return(_instance);
        }
Пример #2
0
        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);
            }
        }
Пример #3
0
 public int TimeLeftUntilGoal(String username, String password)
 {
     return(GoalController.Instance().GetMonthCountUntilGoalIsReachedOneUser(username, password));
 }
Пример #4
0
 public int TimeLeftUntilGoal()
 {
     return(GoalController.Instance().GetMonthCountUntilGoalIsReached());
 }
Пример #5
0
        public decimal GetGoalAmount()
        {
            List <GoalDB> returningValue = (List <GoalDB>)GoalController.Instance().ParseGoal();

            return(returningValue[0].goalAmount);
        }