Exemple #1
0
 public static Dictionary<String, ArrayList> GetDefaultValues(String model)
 {
     ScoringDAL dbAccess = new ScoringDAL();
     Dictionary<String, ArrayList> defaultValues = new Dictionary<string, ArrayList>();
     defaultValues = dbAccess.GetDefaultLists(model);
     //for (int loopIndex = 0; loopIndex < 10; loopIndex++)
     //{
     //    Thread.Sleep(1000);
     //}
     return defaultValues;
 }
Exemple #2
0
        public static Dictionary<String, ArrayList> GetDefaultValues(String model)
        {
            ScoringDAL dbAccess = new ScoringDAL();
            Dictionary<String, ArrayList> defaultValues = new Dictionary<string, ArrayList>();

            //gets the default lists for the particular model that is selected by the user
            defaultValues = dbAccess.GetDefaultLists(model);
            return defaultValues;
        }