using System; using System.Collections.Generic; using System.Linq; using System.Web; namespace EHEC_Server.DataBuilder { public class GenerateDataBuilder { //dieses file wird im moment nicht benötigt, da alles im global benutzt wird, bitte so belassen für den moment private static List Doctors = new List(); private static List Patients = new List(); private static List Origins = new List(); private static List Results = new List(); private static List Exams = new List(); private static Random Rnd = new Random(); private static List FirstNames = new List(new string[] { "Michael", "Andreas", "Stefan", "Ivan","Adrien" }); private static List LastNames = new List(new string[] { "Meister", "Schär", "Eberhard", "Zingg", "Howald", "Aebi", "Feldmann" }); private static List DoctorOrigins = new List(new string[] { "SanktMonika", "DisneyWorld", "Kantonsspital Baden", "Online Schulung" }); private static List Street = new List(new string[] { "Rosenauweg", "Schessstrasse", "Hardstrasse", "Gehweg", "Bananastreet", "Moosweg", "Feldstrasse" }); private static List BirthDate = new List(new string[] { "12991212", "20000112", }); private static List City = new List(new string[] { "Meister", "Schär", "Eberhard", "Zingg", "Howald", "Aebi", "Feldmann" }); } }