public List <Bystander> GetBystanders(int locationID)
        {
            List <object[]>  data       = context.GetBystanders(locationID);
            List <Bystander> bystanders = new List <Bystander>();

            foreach (object[] row in data)
            {
                // TODO: implementeer dit
            }
            return(bystanders);
        }